2016-09-22 14:39:36 -04:00
|
|
|
import getUrl from 'discourse-common/lib/get-url';
|
|
|
|
|
2016-08-31 11:30:51 -04:00
|
|
|
const Router = Ember.Router.extend({
|
2016-09-22 14:39:36 -04:00
|
|
|
rootURL: getUrl('/wizard'),
|
2016-09-07 18:04:01 -04:00
|
|
|
location: Ember.testing ? 'none': 'history'
|
2016-08-31 11:30:51 -04:00
|
|
|
});
|
2016-08-24 14:35:07 -04:00
|
|
|
|
2016-09-07 18:04:01 -04:00
|
|
|
Router.map(function() {
|
|
|
|
this.route('step', { path: '/steps/:step_id' });
|
2016-08-24 14:35:07 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
export default Router;
|