Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 04:12:53 +01:00
10 Zeilen
333 B
JavaScript
10 Zeilen
333 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: '/:name', resetNamespace: true });
|
|
});
|
|
});
|
|
}
|
|
};
|