ft_transcendence/frontend/static/js/views/accounts/LogoutView.js

12 lines
294 B
JavaScript
Raw Normal View History

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");
client.logout();
2023-11-29 10:05:49 -05:00
navigateTo("/login")
}
}