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