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

11 lines
213 B
Plaintext
Raw Normal View History

const Router = Ember.Router.extend({
2016-09-07 18:04:01 -04:00
rootURL: '/wizard',
location: Ember.testing ? 'none': 'history'
});
2016-09-07 18:04:01 -04:00
Router.map(function() {
this.route('step', { path: '/steps/:step_id' });
});
export default Router;