2017-09-23 04:34:07 +02:00
|
|
|
export default {
|
|
|
|
resource: 'admin',
|
|
|
|
map() {
|
|
|
|
this.route('adminWizards', { path: '/wizards', resetNamespace: true }, function() {
|
2020-04-13 14:17:22 +02:00
|
|
|
|
|
|
|
this.route('adminWizardsWizard', { path: '/wizard/', resetNamespace: true }, function() {
|
|
|
|
this.route('adminWizardsWizardShow', { path: '/:wizardId/', resetNamespace: true });
|
2017-09-23 04:34:07 +02:00
|
|
|
});
|
2020-04-13 14:17:22 +02:00
|
|
|
|
2017-10-05 02:36:46 +02:00
|
|
|
this.route('adminWizardsSubmissions', { path: '/submissions', resetNamespace: true }, function() {
|
2020-04-13 14:17:22 +02:00
|
|
|
this.route('adminWizardsSubmissionsShow', { path: '/:wizardId/', resetNamespace: true });
|
|
|
|
})
|
|
|
|
|
|
|
|
this.route('adminWizardsApi', { path: '/api', resetNamespace: true }, function() {
|
|
|
|
this.route('adminWizardsApiShow', { path: '/:name', resetNamespace: true });
|
2019-05-30 07:04:34 +02:00
|
|
|
});
|
2019-07-27 23:08:22 +02:00
|
|
|
|
2019-07-30 19:04:18 +02:00
|
|
|
this.route('adminWizardsTransfer', { path: '/transfer', resetNamespace: true });
|
2017-09-23 04:34:07 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|