mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-26 12:21:36 +03:00
3653cfbfbf
no issue - moved `document-title` Route extension's functionality into the `ui` service - updates the title each time the router service emits a route changed event - `ui.updateDocumentTitle()` can now be called directly from components rather than the confusing `this.send('updateDocumentTitle')` bubbling behaviour - refactored the `titleToken` implementation to use the now-formalised `RouteInfo`'s `metadata` field (https://github.com/emberjs/rfcs/blob/master/text/0398-RouteInfo-Metadata.md#appendix-a)
36 lines
941 B
JavaScript
36 lines
941 B
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(),
|
|
|
|
// 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.fetchSubscribers.perform();
|
|
},
|
|
|
|
buildRouteInfoMetadata() {
|
|
return {
|
|
titleToken: 'Subscribers'
|
|
};
|
|
}
|
|
});
|