Add excluded paths setting
Dieser Commit ist enthalten in:
Ursprung
6d769a5392
Commit
5b312eca07
3 geänderte Dateien mit 28 neuen und 0 gelöschten Zeilen
|
@ -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);
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
};
|
||||
|
|
|
@ -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
7
config/settings.yml
Normale Datei
|
@ -0,0 +1,7 @@
|
|||
plugins:
|
||||
wizard_redirect_exclude_paths:
|
||||
client: true
|
||||
type: list
|
||||
default: 'admin'
|
||||
choices:
|
||||
- admin
|
Laden …
In neuem Issue referenzieren