2015-01-11 22:55:52 +03:00
|
|
|
import AuthenticatedRoute from 'ghost/routes/authenticated';
|
|
|
|
import CurrentUserSettings from 'ghost/mixins/current-user-settings';
|
2015-02-03 19:29:01 +03:00
|
|
|
import styleBody from 'ghost/mixins/style-body';
|
2015-01-11 22:55:52 +03:00
|
|
|
|
2015-08-19 14:55:40 +03:00
|
|
|
export default AuthenticatedRoute.extend(styleBody, CurrentUserSettings, {
|
2015-05-25 21:17:10 +03:00
|
|
|
titleToken: 'Settings - Navigation',
|
2015-01-11 22:55:52 +03:00
|
|
|
|
2015-02-03 19:29:01 +03:00
|
|
|
classNames: ['settings-view-navigation'],
|
|
|
|
|
2015-06-17 02:24:01 +03:00
|
|
|
beforeModel: function (transition) {
|
|
|
|
this._super(transition);
|
2015-04-14 18:04:16 +03:00
|
|
|
return this.get('session.user')
|
|
|
|
.then(this.transitionAuthor());
|
2015-01-11 22:55:52 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
model: function () {
|
|
|
|
return this.store.find('setting', {type: 'blog,theme'}).then(function (records) {
|
|
|
|
return records.get('firstObject');
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2015-01-14 17:46:29 +03:00
|
|
|
actions: {
|
|
|
|
save: function () {
|
2015-01-18 03:16:54 +03:00
|
|
|
// since shortcuts are run on the route, we have to signal to the components
|
|
|
|
// on the page that we're about to save.
|
|
|
|
$('.page-actions .btn-blue').focus();
|
|
|
|
|
2015-01-14 17:46:29 +03:00
|
|
|
this.get('controller').send('save');
|
|
|
|
}
|
2015-01-11 22:55:52 +03:00
|
|
|
}
|
|
|
|
});
|