mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-13 14:39:52 +03:00
3a7be0c2fd
Closes #2843 * Implemnted the ember validator correctly for both reset request and actual reset (with the token) * added reset validator * changed the request route addresses to be `/authentication/passwordreset` * changed the format of data to be `{ thing: [ {data } ] }` Missing: * notifications * tests for these use cases
51 lines
1.7 KiB
JavaScript
51 lines
1.7 KiB
JavaScript
/*global console*/
|
|
/* jshint unused: false */
|
|
import ajax from 'ghost/utils/ajax';
|
|
import ValidationEngine from 'ghost/mixins/validation-engine';
|
|
|
|
var ResetController = Ember.Controller.extend(ValidationEngine, {
|
|
passwords: {
|
|
newPassword: '',
|
|
ne2Password: ''
|
|
},
|
|
token: '',
|
|
submitButtonDisabled: false,
|
|
|
|
validationType: 'reset',
|
|
|
|
actions: {
|
|
submit: function () {
|
|
var self = this,
|
|
data = self.getProperties('passwords', 'token');
|
|
|
|
this.toggleProperty('submitting');
|
|
this.validate({format: false}).then(function () {
|
|
ajax({
|
|
url: self.get('ghostPaths').apiUrl('authentication', 'passwordreset'),
|
|
type: 'PUT',
|
|
data: {
|
|
passwordreset: [{
|
|
newPassword: data.passwords.newPassword,
|
|
ne2Password: data.passwords.ne2Password,
|
|
token: data.token
|
|
}]
|
|
}
|
|
}).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);
|
|
});
|
|
}
|
|
}
|
|
});
|
|
|
|
export default ResetController;
|