0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-10 23:36:14 -05:00

Update user model logic for Ember Inspector.

Fixes #2921.
This commit is contained in:
Lucas Holmquist 2014-06-09 12:17:39 -04:00
parent 4406d350c4
commit b90f3221aa

View file

@ -41,11 +41,9 @@ var User = DS.Model.extend({
validationErrors.push({message: 'Location is too long'});
}
if (this.get('website').length) {
if (!validator.isURL(this.get('website'), { protocols: ['http', 'https'], require_protocol: true }) ||
!validator.isLength(this.get('website'), 0, 2000)) {
validationErrors.push({message: 'Please use a valid url'});
}
if (!validator.isURL(this.get('website'), { protocols: ['http', 'https'], require_protocol: true }) ||
!validator.isLength(this.get('website'), 0, 2000)) {
validationErrors.push({message: 'Please use a valid url'});
}
return validationErrors;