diff options
author | Azul <azul@leap.se> | 2012-12-10 20:16:26 +0100 |
---|---|---|
committer | Azul <azul@leap.se> | 2012-12-10 20:16:26 +0100 |
commit | d9fa19106998bc6ac484494334dcf150bb6aa5d5 (patch) | |
tree | 3e0fee408c471f4355d0724387ad4787b2507999 /users/app/models/user.rb | |
parent | 2695bf598cfbe860b202ebc96a4243af391d4582 (diff) |
email format validations
Diffstat (limited to 'users/app/models/user.rb')
-rw-r--r-- | users/app/models/user.rb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/users/app/models/user.rb b/users/app/models/user.rb index fcb211e..a41554d 100644 --- a/users/app/models/user.rb +++ b/users/app/models/user.rb @@ -26,6 +26,13 @@ class User < CouchRest::Model::Base :confirmation => true, :format => { :with => /.{8}.*/, :message => "needs to be at least 8 characters long" } + # TODO: write a proper email validator to be used in the different places + validates :email, + :format => { :with => /\A([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})\Z/, :message => "needs to be a valid email address"} + + validates :email_forward, + :format => { :with => /\A([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})\Z/, :message => "needs to be a valid email address"} + timestamps! design do |