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,
|
|
});
|
|
}
|
|
);
|
|
}
|