mirror of
https://github.com/discourse/discourse.git
synced 2025-02-06 11:28:18 +00:00
11 lines
213 B
JavaScript
11 lines
213 B
JavaScript
const Router = Ember.Router.extend({
|
|
rootURL: '/wizard',
|
|
location: Ember.testing ? 'none': 'history'
|
|
});
|
|
|
|
Router.map(function() {
|
|
this.route('step', { path: '/steps/:step_id' });
|
|
});
|
|
|
|
export default Router;
|