0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-09-19 23:31:11 +02:00

Add excluded paths setting

Dieser Commit ist enthalten in:
Angus McLeod 2018-05-24 15:34:02 +10:00
Ursprung 6d769a5392
Commit 5b312eca07
3 geänderte Dateien mit 28 neuen und 0 gelöschten Zeilen

Datei anzeigen

@ -1,3 +1,5 @@
import ApplicationRoute from 'discourse/routes/application';
export default {
name: "custom-wizard-redirect",
after: "message-bus",
@ -11,5 +13,21 @@ export default {
const wizardUrl = window.location.origin + '/w/' + wizardId;
window.location.href = wizardUrl;
});
ApplicationRoute.reopen({
actions: {
willTransition(transition) {
const redirectToWizard = this.get('currentUser.redirect_to_wizard');
const excludedPaths = Discourse.SiteSettings.wizard_redirect_exclude_paths.split('|').concat(['loading']);
if (redirectToWizard && excludedPaths.indexOf(this.routeName) === -1) {
transition.abort();
window.location = '/w/' + redirectToWizard.dasherize();
}
return this._super(transition);
}
}
})
}
};

Datei anzeigen

@ -5,3 +5,6 @@ en:
too_short: "%{label} must be at least %{min} characters"
none: "We couldn't find a wizard at that address."
no_skip: "Wizard can't be skipped"
site_settings:
wizard_redirect_exclude_paths: "Routes excluded from wizard redirects."

7
config/settings.yml Normale Datei
Datei anzeigen

@ -0,0 +1,7 @@
plugins:
wizard_redirect_exclude_paths:
client: true
type: list
default: 'admin'
choices:
- admin