2023-11-29 10:05:49 -05:00
|
|
|
import { client, navigateTo } from "../../index.js";
|
2023-11-29 16:51:57 -05:00
|
|
|
import AbstractAuthentifiedView from "../AbstractAuthentifiedView.js";
|
2023-11-29 10:05:49 -05:00
|
|
|
|
2023-11-29 16:51:57 -05:00
|
|
|
export default class extends AbstractAuthentifiedView
|
2023-11-29 10:05:49 -05:00
|
|
|
{
|
|
|
|
constructor(params) {
|
|
|
|
super(params);
|
|
|
|
this.setTitle("Logout");
|
2023-11-29 13:55:44 -05:00
|
|
|
client.logout();
|
2023-11-29 10:05:49 -05:00
|
|
|
navigateTo("/login")
|
|
|
|
}
|
|
|
|
}
|