discourse/app/assets/javascripts/wizard/routes/index.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
195 B
JavaScript
Raw Normal View History

import Route from "@ember/routing/route";
export default Route.extend({
beforeModel() {
2016-08-26 01:14:56 +08:00
const appModel = this.modelFor("application");
this.replaceWith("step", appModel.start);
}
});