mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-02 08:13:34 +03:00
fe9692e824
no issue - added redirect and notification to reset route - added notification to signup route
18 lines
632 B
JavaScript
18 lines
632 B
JavaScript
import styleBody from 'ghost/mixins/style-body';
|
|
import loadingIndicator from 'ghost/mixins/loading-indicator';
|
|
|
|
var ResetRoute = Ember.Route.extend(styleBody, loadingIndicator, {
|
|
classNames: ['ghost-reset'],
|
|
beforeModel: function () {
|
|
if (this.get('session').isAuthenticated) {
|
|
this.notifications.showWarn('You can\'t reset your password while you\'re signed in.', true);
|
|
this.transitionTo(SimpleAuth.Configuration.routeAfterAuthentication);
|
|
}
|
|
},
|
|
setupController: function (controller, params) {
|
|
controller.token = params.token;
|
|
}
|
|
});
|
|
|
|
export default ResetRoute;
|