mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 07:09:48 +03:00
71104558b7
closes #3663 - Set value of email input as nil string
45 lines
1.6 KiB
JavaScript
45 lines
1.6 KiB
JavaScript
/* jshint unused: false */
|
|
import ajax from 'ghost/utils/ajax';
|
|
import ValidationEngine from 'ghost/mixins/validation-engine';
|
|
|
|
var ForgottenController = Ember.Controller.extend(ValidationEngine, {
|
|
email: '',
|
|
submitting: false,
|
|
|
|
// ValidationEngine settings
|
|
validationType: 'forgotten',
|
|
|
|
actions: {
|
|
submit: function () {
|
|
var self = this,
|
|
data = self.getProperties('email');
|
|
|
|
this.toggleProperty('submitting');
|
|
this.validate({ format: false }).then(function () {
|
|
ajax({
|
|
url: self.get('ghostPaths.url').api('authentication', 'passwordreset'),
|
|
type: 'POST',
|
|
data: {
|
|
passwordreset: [{
|
|
email: data.email
|
|
}]
|
|
}
|
|
}).then(function (resp) {
|
|
self.toggleProperty('submitting');
|
|
self.notifications.showSuccess('Please check your email for instructions.', {delayed: true});
|
|
self.set('email', '');
|
|
self.transitionToRoute('signin');
|
|
}).catch(function (resp) {
|
|
self.toggleProperty('submitting');
|
|
self.notifications.showAPIError(resp, { defaultErrorText: 'There was a problem logging in, please try again.' });
|
|
});
|
|
}).catch(function (errors) {
|
|
self.toggleProperty('submitting');
|
|
self.notifications.showErrors(errors);
|
|
});
|
|
}
|
|
}
|
|
});
|
|
|
|
export default ForgottenController;
|