2017-09-23 04:34:07 +02:00
|
|
|
export default {
|
|
|
|
resource: 'admin',
|
|
|
|
map() {
|
|
|
|
this.route('adminWizards', { path: '/wizards', resetNamespace: true }, function() {
|
|
|
|
this.route('adminWizardsCustom', { path: '/custom', resetNamespace: true }, function() {
|
2017-09-29 13:27:03 +02:00
|
|
|
this.route('adminWizard', { path: '/:wizard_id', resetNamespace: true });
|
2017-09-23 04:34:07 +02:00
|
|
|
});
|
2017-10-05 02:36:46 +02:00
|
|
|
this.route('adminWizardsSubmissions', { path: '/submissions', resetNamespace: true }, function() {
|
|
|
|
this.route('adminWizardSubmissions', { path: '/:wizard_id', resetNamespace: true });
|
|
|
|
});
|
2019-05-30 07:04:34 +02:00
|
|
|
this.route('adminWizardsApis', { path: '/apis', resetNamespace: true }, function() {
|
2019-06-02 12:54:31 +02:00
|
|
|
this.route('adminWizardsApi', { 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 });
|
2019-07-27 23:08:22 +02:00
|
|
|
|
2017-09-23 04:34:07 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|