diff --git a/core/client/controllers/reset.js b/core/client/controllers/reset.js index b0b9b9135d..bb24501198 100644 --- a/core/client/controllers/reset.js +++ b/core/client/controllers/reset.js @@ -32,8 +32,10 @@ var ResetController = Ember.Controller.extend(ValidationEngine, { } }).then(function (resp) { self.toggleProperty('submitting'); + self.notifications.showSuccess(resp.passwordreset[0].message, true); self.transitionToRoute('signin'); - }).catch(function (errors) { + }).catch(function (response) { + self.notifications.showAPIError(response); self.toggleProperty('submitting'); }); }).catch(function (error) {