Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-09 20:02:54 +01:00
12 Zeilen
259 B
JavaScript
12 Zeilen
259 B
JavaScript
export default function () {
|
|
this.route(
|
|
"customWizard",
|
|
{ path: "/w/:wizard_id", resetNamespace: true },
|
|
function () {
|
|
this.route("customWizardStep", {
|
|
path: "/steps/:step_id",
|
|
resetNamespace: true,
|
|
});
|
|
}
|
|
);
|
|
}
|