1
0
Fork 0
discourse-custom-wizard-unl.../assets/javascripts/discourse/custom-wizard-admin-route-map.js.es6
2017-09-23 10:34:07 +08:00

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 });
});
});
}
};