0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-09-20 15:51:11 +02:00
discourse-custom-wizard/assets/javascripts/wizard/router.js.es6
2022-06-15 08:03:38 +02:00

17 Zeilen
570 B
JavaScript

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;