mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-24 03:14:03 +03:00
8826f0e66a
no issue - make the check for "email" in the server provided error case-insensitive
33 lines
1.0 KiB
JavaScript
33 lines
1.0 KiB
JavaScript
import Ember from 'ember';
|
|
import ModalComponent from 'ghost/components/modals/base';
|
|
|
|
export default ModalComponent.extend({
|
|
actions: {
|
|
updateEmail(newEmail) {
|
|
this.set('model.email', newEmail);
|
|
this.set('model.hasValidated', Ember.A());
|
|
this.get('model.errors').clear();
|
|
},
|
|
|
|
confirm() {
|
|
let confirmAction = this.get('confirm');
|
|
|
|
this.set('submitting', true);
|
|
|
|
confirmAction().then(() => {
|
|
this.send('closeModal');
|
|
}).catch((errors) => {
|
|
let [error] = errors;
|
|
if (error && error.match(/email/i)) {
|
|
this.get('model.errors').add('email', error);
|
|
this.get('model.hasValidated').pushObject('email');
|
|
}
|
|
}).finally(() => {
|
|
if (!this.get('isDestroying') && !this.get('isDestroyed')) {
|
|
this.set('submitting', false);
|
|
}
|
|
});
|
|
}
|
|
}
|
|
});
|