mirror of
https://github.com/discourse/discourse.git
synced 2025-09-06 10:50:21 +08:00
6 lines
159 B
JavaScript
6 lines
159 B
JavaScript
export default Ember.Route.extend({
|
|
beforeModel() {
|
|
const appModel = this.modelFor('application');
|
|
this.replaceWith('step', appModel.start);
|
|
}
|
|
});
|