ft_transcendence/frontend/static/js/views/abstracts/AbstractNonAuthentified.js

17 lines
383 B
JavaScript
Raw Normal View History

import { client, navigateTo } from "../../index.js";
import AbstractRedirectView from "./AbstractRedirectView.js";
export default class extends AbstractRedirectView{
2023-11-30 07:05:46 -05:00
constructor(params, title, url) {
super(params, title, url);
}
async redirect()
{
if (await client.isAuthentificate() === false)
return 0;
navigateTo(this.redirect_url);
return 1;
}
}