mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-20 17:32:15 +03:00
d87994aa35
Closes #4539
30 lines
783 B
JavaScript
30 lines
783 B
JavaScript
import AuthenticatedRoute from 'ghost/routes/authenticated';
|
|
import CurrentUserSettings from 'ghost/mixins/current-user-settings';
|
|
|
|
var NavigationRoute = AuthenticatedRoute.extend(CurrentUserSettings, {
|
|
|
|
titleToken: 'Navigation',
|
|
|
|
beforeModel: function () {
|
|
if (!this.get('config.navigationUI')) {
|
|
return this.transitionTo('settings.general');
|
|
}
|
|
|
|
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 () {
|
|
this.get('controller').send('save');
|
|
}
|
|
}
|
|
});
|
|
|
|
export default NavigationRoute;
|