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