This repository has been archived on 2023-03-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
osr-discourse-src/app/assets/javascripts/wizard/routes/index.js
T
2020-03-23 14:15:16 -04:00

8 lines
195 B
JavaScript

import Route from "@ember/routing/route";
export default Route.extend({
beforeModel() {
const appModel = this.modelFor("application");
this.replaceWith("step", appModel.start);
}
});