mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-12-04 12:51:41 -05:00
9 lines
188 B
JavaScript
9 lines
188 B
JavaScript
const Router = Ember.Router.extend({
|
|
location: Ember.testing ? 'none': 'hash'
|
|
});
|
|
|
|
Router.map(function () {
|
|
this.route('step', { path: '/step/:step_id' });
|
|
});
|
|
|
|
export default Router;
|