2016-09-22 14:39:36 -04:00
|
|
|
import getUrl from "discourse-common/lib/get-url";
|
2019-11-07 12:20:35 -05:00
|
|
|
import ENV from "discourse-common/config/environment";
|
2016-09-22 14:39:36 -04:00
|
|
|
|
2016-08-31 11:30:51 -04:00
|
|
|
const Router = Ember.Router.extend({
|
2017-06-14 13:57:58 -04:00
|
|
|
rootURL: getUrl("/wizard/"),
|
2019-11-07 12:20:35 -05:00
|
|
|
location: ENV.environment === "test" ? "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;
|