1
0
Fork 0
Dieser Commit ist enthalten in:
merefield 2023-07-11 08:48:20 +01:00
Ursprung ccb7095b00
Commit 0cec743253

Datei anzeigen

@ -24,18 +24,20 @@ export default {
api.onAppEvent("page:changed", (data) => { api.onAppEvent("page:changed", (data) => {
const currentUser = container.lookup("service:current-user"); const currentUser = container.lookup("service:current-user");
const settings = container.lookup("service:site-settings"); const settings = container.lookup("service:site-settings");
const redirectToWizard = currentUser.redirect_to_wizard; if (currentUser) {
const excludedPaths = settings.wizard_redirect_exclude_paths const redirectToWizard = currentUser.redirect_to_wizard;
.split("|") const excludedPaths = settings.wizard_redirect_exclude_paths
.concat(["loading"]); .split("|")
if ( .concat(["loading"]);
redirectToWizard && if (
data.currentRouteName !== "customWizardStep" && redirectToWizard &&
!excludedPaths.find((p) => { data.currentRouteName !== "customWizardStep" &&
return data.currentRouteName.indexOf(p) > -1; !excludedPaths.find((p) => {
}) return data.currentRouteName.indexOf(p) > -1;
) { })
window.location = "/w/" + redirectToWizard.dasherize(); ) {
window.location = "/w/" + redirectToWizard.dasherize();
}
} }
}); });