mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 13:54:35 +03:00
181de6f5ea
no refs. - added "View site" as the first and default menu item in navigation bar to be able to browse the site without leaving the Admin - rearranged left sidebar items according to new structure (moved Labs down to bottom) - removed "View site" from publication main menu because it's become redundant - added Night shift toggle in line with Labs menu to be able quickly access it
32 lines
844 B
JavaScript
32 lines
844 B
JavaScript
import AuthenticatedRoute from 'ghost-admin/routes/authenticated';
|
|
import {inject as service} from '@ember/service';
|
|
|
|
export default AuthenticatedRoute.extend({
|
|
config: service(),
|
|
|
|
titleToken: 'Members',
|
|
|
|
// redirect to posts screen if:
|
|
// - developer experiments aren't enabled
|
|
// - TODO: members is disabled?
|
|
// - logged in user isn't owner/admin
|
|
beforeModel() {
|
|
this._super(...arguments);
|
|
|
|
if (!this.config.get('enableDeveloperExperiments')) {
|
|
return this.transitionTo('home');
|
|
}
|
|
|
|
return this.session.user.then((user) => {
|
|
if (!user.isOwnerOrAdmin) {
|
|
return this.transitionTo('home');
|
|
}
|
|
});
|
|
},
|
|
|
|
setupController(controller) {
|
|
this._super(...arguments);
|
|
controller.fetchMembers.perform();
|
|
}
|
|
});
|