mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-12-14 01:31:16 -05: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);
|
|
}
|
|
});
|