mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 22:02:11 +03:00
ee89b11a6a
issue #5409 - change persistent/passive notification status to alert/notification - replace showSuccess/Info/Warn/Error with showNotification/showAlert - fix and clean up notification/alert components
27 lines
812 B
JavaScript
27 lines
812 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});
|
|
this.transitionTo(Configuration.routeAfterAuthentication);
|
|
}
|
|
},
|
|
|
|
setupController: function (controller, params) {
|
|
controller.token = params.token;
|
|
},
|
|
|
|
// Clear out any sensitive information
|
|
deactivate: function () {
|
|
this._super();
|
|
this.controller.clearData();
|
|
}
|
|
});
|