6 lines
127 B
JavaScript
6 lines
127 B
JavaScript
|
export default function () {
|
||
|
this.route("wizard", function () {
|
||
|
this.route("step", { path: "/steps/:step_id" });
|
||
|
});
|
||
|
}
|