mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 15:12:58 +03:00
11 lines
250 B
JavaScript
11 lines
250 B
JavaScript
import Route from 'ember-route';
|
|
|
|
export default Route.extend({
|
|
beforeModel() {
|
|
this._super(...arguments);
|
|
if (!this.controllerFor('setup.two').get('blogCreated')) {
|
|
this.transitionTo('setup.two');
|
|
}
|
|
}
|
|
});
|