mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-25 19:48:50 +03:00
bb7df76af0
no issue - removed `styleBody` mixin in favour of using Ember's `buildRouteInfoMetadata` hook and router events in the `ui` service - refactored separate CSS classes for each unauthenticated route into a single `.unauthenticated-route` class because hiding mobile nav whilst unauthenticated was the only use for body classes
33 lines
936 B
JavaScript
33 lines
936 B
JavaScript
import Route from '@ember/routing/route';
|
|
import UnauthenticatedRouteMixin from 'ghost-admin/mixins/unauthenticated-route-mixin';
|
|
import {inject as service} from '@ember/service';
|
|
|
|
export default Route.extend(UnauthenticatedRouteMixin, {
|
|
notifications: service(),
|
|
session: service(),
|
|
|
|
beforeModel() {
|
|
if (this.get('session.isAuthenticated')) {
|
|
this.notifications.showAlert('You can\'t reset your password while you\'re signed in.', {type: 'warn', delayed: true, key: 'password.reset.signed-in'});
|
|
}
|
|
|
|
this._super(...arguments);
|
|
},
|
|
|
|
setupController(controller, params) {
|
|
controller.token = params.token;
|
|
},
|
|
|
|
// Clear out any sensitive information
|
|
deactivate() {
|
|
this._super(...arguments);
|
|
this.controller.clearData();
|
|
},
|
|
|
|
buildRouteInfoMetadata() {
|
|
return {
|
|
bodyClasses: ['unauthenticated-route']
|
|
};
|
|
}
|
|
});
|