diff options
author | Azul <azul@leap.se> | 2012-12-13 17:16:05 +0100 |
---|---|---|
committer | Azul <azul@leap.se> | 2012-12-13 17:16:05 +0100 |
commit | 32db6e2ee3ae449f2fe0f947f9ac4aafde340a9d (patch) | |
tree | 1f9abefddc5f3cfb49a96f87e184a78feb8fb506 /users/app/models/email.rb | |
parent | 1a26988cb7ff30061473f4a781166b184b3037ce (diff) | |
parent | feee17e3a9970ac04f5a789255fbf4c3e8e89eb8 (diff) |
Merge branch 'feature/email-aliases-model'
Diffstat (limited to 'users/app/models/email.rb')
-rw-r--r-- | users/app/models/email.rb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/users/app/models/email.rb b/users/app/models/email.rb new file mode 100644 index 0000000..4b01838 --- /dev/null +++ b/users/app/models/email.rb @@ -0,0 +1,17 @@ +class Email + include CouchRest::Model::Embeddable + + property :email, String + + validates :email, + :format => { :with => /\A([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})\Z/, :message => "needs to be a valid email address"} + + def initialize(attributes = nil, &block) + attributes = {:email => attributes} if attributes.is_a? String + super(attributes, &block) + end + + def to_s + email + end +end |