custom-wizard-admin-route-map.js.es6 338 B

12345678910
  1. export default {
  2. resource: 'admin',
  3. map() {
  4. this.route('adminWizards', { path: '/wizards', resetNamespace: true }, function() {
  5. this.route('adminWizardsCustom', { path: '/custom', resetNamespace: true }, function() {
  6. this.route('adminWizard', { path: '/:wizard_id', resetNamespace: true });
  7. });
  8. });
  9. }
  10. };