Redirect fomr pages that require auth on logout

This commit is contained in:
SleeplessOne1917 2023-05-13 10:38:43 -04:00
parent 8c06eb9749
commit f31cd42d8e

View file

@ -48,7 +48,15 @@ export class UserService {
this.myUserInfo = undefined; this.myUserInfo = undefined;
IsomorphicCookie.remove("jwt"); // TODO is sometimes unreliable for some reason IsomorphicCookie.remove("jwt"); // TODO is sometimes unreliable for some reason
document.cookie = "jwt=; Max-Age=0; path=/; domain=" + location.hostname; 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 { public auth(throwErr = true): string | undefined {