Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 12:22:54 +01:00
18 Zeilen
816 B
JavaScript
18 Zeilen
816 B
JavaScript
export default {
|
|
resource: 'admin',
|
|
map() {
|
|
this.route('adminWizards', { path: '/wizards', resetNamespace: true }, function() {
|
|
this.route('adminWizardsCustom', { path: '/custom', resetNamespace: true }, function() {
|
|
this.route('adminWizard', { path: '/:wizard_id', resetNamespace: true });
|
|
});
|
|
this.route('adminWizardsSubmissions', { path: '/submissions', resetNamespace: true }, function() {
|
|
this.route('adminWizardSubmissions', { path: '/:wizard_id', resetNamespace: true });
|
|
});
|
|
this.route('adminWizardsApis', { path: '/apis', resetNamespace: true }, function() {
|
|
this.route('adminWizardsApi', { path: '/:name', resetNamespace: true });
|
|
});
|
|
|
|
this.route('adminWizardsTransfer', { path: '/transfer', resetNamespace: true });
|
|
});
|
|
}
|
|
};
|