mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-12-04 04:42:02 -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);
|
|
}
|
|
});
|