mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-22 12:21:13 +00:00
Redirect fomr pages that require auth on logout
This commit is contained in:
parent
8c06eb9749
commit
f31cd42d8e
1 changed files with 9 additions and 1 deletions
|
@ -48,7 +48,15 @@ export class UserService {
|
|||
this.myUserInfo = undefined;
|
||||
IsomorphicCookie.remove("jwt"); // TODO is sometimes unreliable for some reason
|
||||
document.cookie = "jwt=; Max-Age=0; path=/; domain=" + location.hostname;
|
||||
location.reload();
|
||||
if (
|
||||
/create_.*|inbox|settings|setup|admin|reports|registration_applications/g.test(
|
||||
location.pathname
|
||||
)
|
||||
) {
|
||||
location.replace("/");
|
||||
} else {
|
||||
location.reload();
|
||||
}
|
||||
}
|
||||
|
||||
public auth(throwErr = true): string | undefined {
|
||||
|
|
Loading…
Reference in a new issue