mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-21 01:41:46 +03:00
c5a8a0c860
closes #5903, refs #5409 - switch alert/notification component tests from unit to integration where appropriate - rename `notifications.closeAll` to `notifications.clearAll` to better represent it's behaviour - add concept of a "key" to alerts/notifications and ability to close only specified keys through notifications service - close duplicate alerts/notifications before showing a new one - specify a key for all existing alerts - close failure alerts on successful retries - clear all currently displayed alerts on successful sign-in
27 lines
845 B
JavaScript
27 lines
845 B
JavaScript
import Ember from 'ember';
|
|
import Configuration from 'simple-auth/configuration';
|
|
import styleBody from 'ghost/mixins/style-body';
|
|
|
|
export default Ember.Route.extend(styleBody, {
|
|
classNames: ['ghost-reset'],
|
|
|
|
notifications: 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();
|
|
}
|
|
});
|