mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-15 19:52:01 +03:00
ab97c8c861
Closes #2976, Closes #3017 - Move logic to signup controller - Add ValidationEngine mixin to signup controller - Add signup validator with code from clientold login view - Add signin validator and integrate into signin controller - Add validation to forgotten controller - Switch to button action to support hitting enter in text field to submit - Clear all notifications in notifications.closeAll - Modify ValidationEngine.validate to not format errors based on option - Update casper test for signin to wait for notification before trying to do another signin
15 lines
347 B
JavaScript
15 lines
347 B
JavaScript
var ForgotValidator = Ember.Object.create({
|
|
validate: function (model) {
|
|
var data = model.getProperties('email'),
|
|
validationErrors = [];
|
|
|
|
if (!validator.isEmail(data.email)) {
|
|
validationErrors.push('Invalid Email');
|
|
}
|
|
|
|
return validationErrors;
|
|
}
|
|
});
|
|
|
|
export default ForgotValidator;
|