mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-20 17:32:15 +03:00
10 lines
226 B
JavaScript
10 lines
226 B
JavaScript
|
import Ember from 'ember';
|
||
|
|
||
|
export default Ember.Route.extend({
|
||
|
beforeModel: function () {
|
||
|
if (!this.controllerFor('setup.two').get('blogCreated')) {
|
||
|
this.transitionTo('setup.two');
|
||
|
}
|
||
|
}
|
||
|
});
|