0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-13 22:41:32 -05:00

Merge pull request #3368 from felixrieseberg/master

Show errors on reset page (Closes #3330)
This commit is contained in:
Hannah Wolfe 2014-07-24 17:49:56 +01:00
commit 1d926787b3

View file

@ -32,16 +32,13 @@ var ResetController = Ember.Controller.extend(ValidationEngine, {
}
}).then(function (resp) {
self.toggleProperty('submitting');
console.log('success');
self.transitionToRoute('signin');
}).catch(function (errors) {
self.toggleProperty('submitting');
console.log('error');
});
}).catch(function (error) {
self.toggleProperty('submitting');
// @TODO: notifications here for validation errors
console.log('validation error', error);
self.notifications.showErrors(error);
});
}
}