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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
343 B
Plaintext
Raw Normal View History

import getUrl from "discourse-common/lib/get-url";
import ENV from "discourse-common/config/environment";
const Router = Ember.Router.extend({
2017-06-14 13:57:58 -04:00
rootURL: getUrl("/wizard/"),
location: ENV.environment === "test" ? "none" : "history"
});
2016-09-07 18:04:01 -04:00
Router.map(function() {
this.route("step", { path: "/steps/:step_id" });
});
export default Router;