mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-13 22:41:32 -05:00
70a200d53f
ref #4535 - don't need this any more :)
32 lines
966 B
JavaScript
32 lines
966 B
JavaScript
import AuthenticatedRoute from 'ghost/routes/authenticated';
|
|
import CurrentUserSettings from 'ghost/mixins/current-user-settings';
|
|
import styleBody from 'ghost/mixins/style-body';
|
|
|
|
var NavigationRoute = AuthenticatedRoute.extend(styleBody, CurrentUserSettings, {
|
|
|
|
titleToken: 'Navigation',
|
|
|
|
classNames: ['settings-view-navigation'],
|
|
|
|
beforeModel: function () {
|
|
return this.currentUser().then(this.transitionAuthor());
|
|
},
|
|
|
|
model: function () {
|
|
return this.store.find('setting', {type: 'blog,theme'}).then(function (records) {
|
|
return records.get('firstObject');
|
|
});
|
|
},
|
|
|
|
actions: {
|
|
save: function () {
|
|
// 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();
|
|
|
|
this.get('controller').send('save');
|
|
}
|
|
}
|
|
});
|
|
|
|
export default NavigationRoute;
|