mirror of
https://github.com/discourse/discourse.git
synced 2025-02-09 01:54:16 +08:00
9 lines
223 B
JavaScript
9 lines
223 B
JavaScript
import DiscourseRoute from "discourse/routes/discourse";
|
|
|
|
export default DiscourseRoute.extend({
|
|
beforeModel() {
|
|
const appModel = this.modelFor("wizard");
|
|
this.replaceWith("wizard.step", appModel.start);
|
|
},
|
|
});
|