mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-14 18:52:05 +03:00
87e54c0d54
closes #5951 - update to esa 1.0
28 lines
888 B
JavaScript
28 lines
888 B
JavaScript
import Ember from 'ember';
|
|
import Configuration from 'ember-simple-auth/configuration';
|
|
import styleBody from 'ghost/mixins/style-body';
|
|
|
|
export default Ember.Route.extend(styleBody, {
|
|
classNames: ['ghost-reset'],
|
|
|
|
notifications: Ember.inject.service(),
|
|
session: Ember.inject.service(),
|
|
|
|
beforeModel: function () {
|
|
if (this.get('session.isAuthenticated')) {
|
|
this.get('notifications').showAlert('You can\'t reset your password while you\'re signed in.', {type: 'warn', delayed: true, key: 'password.reset.signed-in'});
|
|
this.transitionTo(Configuration.routeAfterAuthentication);
|
|
}
|
|
},
|
|
|
|
setupController: function (controller, params) {
|
|
controller.token = params.token;
|
|
},
|
|
|
|
// Clear out any sensitive information
|
|
deactivate: function () {
|
|
this._super();
|
|
this.controller.clearData();
|
|
}
|
|
});
|