mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-25 19:48:50 +03:00
a758d99dc7
no issue - allows continued development on the "original/non duplicated" files to better preserve git history once the `-old.*` files are deleted
46 lines
1.2 KiB
JavaScript
46 lines
1.2 KiB
JavaScript
import AuthenticatedRoute from 'ghost-admin/routes/authenticated';
|
|
import {inject as service} from '@ember/service';
|
|
|
|
export default AuthenticatedRoute.extend({
|
|
config: service(),
|
|
|
|
queryParams: {
|
|
label: {refreshModel: true}
|
|
},
|
|
|
|
// redirect to posts screen if:
|
|
// - TODO: members is disabled?
|
|
// - logged in user isn't owner/admin
|
|
beforeModel() {
|
|
this._super(...arguments);
|
|
|
|
return this.session.user.then((user) => {
|
|
if (!user.isOwnerOrAdmin) {
|
|
return this.transitionTo('home');
|
|
}
|
|
});
|
|
},
|
|
|
|
// trigger a background load of labels for filter dropdown
|
|
setupController(controller) {
|
|
this._super(...arguments);
|
|
controller.fetchMembers.perform();
|
|
if (!controller._hasLoadedLabels) {
|
|
this.store.query('label', {limit: 'all'}).then(() => {
|
|
controller._hasLoadedLabels = true;
|
|
});
|
|
}
|
|
},
|
|
|
|
deactivate() {
|
|
this._super(...arguments);
|
|
this.controller.modalLabel && this.controller.modalLabel.rollbackAttributes();
|
|
},
|
|
buildRouteInfoMetadata() {
|
|
return {
|
|
titleToken: 'Members'
|
|
};
|
|
}
|
|
|
|
});
|