0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-10 23:36:14 -05:00
ghost/core/client/app/routes/setup/index.js

11 lines
187 B
JavaScript
Raw Normal View History

import Ember from 'ember';
const {Route} = Ember;
export default Route.extend({
beforeModel() {
this._super(...arguments);
this.transitionTo('setup.one');
}
});