fix: autologin when no community

This commit is contained in:
Jean-Baptiste Pasquier 2021-02-23 21:43:21 +01:00
parent b15a5a637a
commit 34a2203b55
1 changed files with 13 additions and 11 deletions

View File

@ -5,17 +5,19 @@ import {
export const HublAutoLogin = {
name: 'hubl-auto-login',
created() {
document
.querySelectorAll(".loggedIn-loader")
.forEach(el => (el.style.display = "flex"));
window.dispatchEvent(
new CustomEvent('requestNavigation', {
detail: {
route: window.hubl.getRoute("dashboard", true)
}
}),
);
document.querySelector("sib-auth").login();
if (window.location.pathname == "/login") {
document
.querySelectorAll(".loggedIn-loader")
.forEach(el => (el.style.display = "flex"));
window.dispatchEvent(
new CustomEvent('requestNavigation', {
detail: {
route: window.hubl.getRoute("dashboard", true)
}
}),
);
document.querySelector("sib-auth").login();
}
}
}