discourse/app/assets/javascripts/wizard/router.js.es6

8 lines
142 B
Text
Raw Normal View History

const Router = Ember.Router.extend();
Router.map(function () {
this.route('step', { path: '/step/:step_id' });
});
export default Router;