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

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

15 lines
391 B
JavaScript
Raw Normal View History

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