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

10 lines
188 B
Plaintext
Raw Normal View History

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