discourse/app/assets/javascripts/wizard/addon/routes/wizard-route-map.js
Jarek Radosz fcb4e5a1a1
DEV: Make wizard an ember addon (#17027)
Co-authored-by: David Taylor <david@taylorhq.com>
2022-06-17 14:50:21 +02:00

6 lines
127 B
JavaScript

export default function () {
this.route("wizard", function () {
this.route("step", { path: "/steps/:step_id" });
});
}