1
0
Fork 0
discourse-custom-wizard-unl.../assets/javascripts/wizard/router.js.es6

18 Zeilen
570 B
Text

2022-03-16 12:33:34 +01:00
import EmberRouter from "@ember/routing/router";
import getUrl from "discourse-common/lib/get-url";
import { isTesting } from "discourse-common/config/environment";
const Router = EmberRouter.extend({
rootURL: isTesting() ? getUrl("/") : getUrl("/w/"),
location: isTesting() ? "none" : "history",
});
Router.map(function () {
this.route("wizard", { path: "/:wizard_id" }, function () {
this.route("steps", { path: "/steps", resetNamespace: true });
this.route("step", { path: "/steps/:step_id", resetNamespace: true });
});
});
export default Router;