mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 22:02:11 +03:00
24 lines
628 B
JavaScript
24 lines
628 B
JavaScript
import Ember from 'ember';
|
|
var ResetValidator = Ember.Object.create({
|
|
check: function (model) {
|
|
var p1 = model.get('newPassword'),
|
|
p2 = model.get('ne2Password'),
|
|
validationErrors = [];
|
|
|
|
if (!validator.equals(p1, p2)) {
|
|
validationErrors.push({
|
|
message: 'The two new passwords don\'t match.'
|
|
});
|
|
}
|
|
|
|
if (!validator.isLength(p1, 8)) {
|
|
validationErrors.push({
|
|
message: 'The password is not long enough.'
|
|
});
|
|
}
|
|
return validationErrors;
|
|
}
|
|
});
|
|
|
|
export default ResetValidator;
|