mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-27 12:53:13 +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
51 lines
1.3 KiB
JavaScript
51 lines
1.3 KiB
JavaScript
import AuthenticatedRoute from 'ghost-admin/routes/authenticated';
|
|
import RSVP from 'rsvp';
|
|
import {inject as service} from '@ember/service';
|
|
|
|
export default AuthenticatedRoute.extend({
|
|
feature: service(),
|
|
|
|
titleToken: 'Subscribers',
|
|
|
|
// redirect if subscribers is disabled or user isn't owner/admin
|
|
beforeModel() {
|
|
this._super(...arguments);
|
|
let promises = {
|
|
user: this.get('session.user'),
|
|
subscribers: this.get('feature.subscribers')
|
|
};
|
|
|
|
return RSVP.hash(promises).then((hash) => {
|
|
let {user, subscribers} = hash;
|
|
|
|
if (!subscribers || !user.isOwnerOrAdmin) {
|
|
return this.transitionTo('home');
|
|
}
|
|
});
|
|
},
|
|
|
|
setupController(controller) {
|
|
this._super(...arguments);
|
|
controller.initializeTable();
|
|
controller.send('loadFirstPage');
|
|
},
|
|
|
|
resetController(controller, isExiting) {
|
|
this._super(...arguments);
|
|
if (isExiting) {
|
|
controller.set('order', 'created_at');
|
|
controller.set('direction', 'desc');
|
|
}
|
|
},
|
|
|
|
actions: {
|
|
addSubscriber(subscriber) {
|
|
this.controller.send('addSubscriber', subscriber);
|
|
},
|
|
|
|
reset() {
|
|
this.controller.send('reset');
|
|
}
|
|
}
|
|
});
|