mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 13:54:35 +03:00
9 lines
169 B
JavaScript
9 lines
169 B
JavaScript
import Route from 'ember-route';
|
|
|
|
export default Route.extend({
|
|
beforeModel() {
|
|
this._super(...arguments);
|
|
this.transitionTo('setup.one');
|
|
}
|
|
});
|