summaryrefslogtreecommitdiff
path: root/users/app/models/local_email.rb
diff options
context:
space:
mode:
authorAzul <azul@leap.se>2013-07-18 12:12:07 +0200
committerAzul <azul@leap.se>2013-07-24 10:55:50 +0200
commitcc96c60c4617c09379d5e1ddbefa42407329c19a (patch)
tree1f51c6a1c76ca283c9ddafe6b5d940fe2fe29ea4 /users/app/models/local_email.rb
parent4a071ef1b33525fa2d1052aa7f21b549447fe767 (diff)
testing all versions of emial identities, emails are now strings
Diffstat (limited to 'users/app/models/local_email.rb')
-rw-r--r--users/app/models/local_email.rb20
1 files changed, 3 insertions, 17 deletions
diff --git a/users/app/models/local_email.rb b/users/app/models/local_email.rb
index 69cba01..1cadc71 100644
--- a/users/app/models/local_email.rb
+++ b/users/app/models/local_email.rb
@@ -1,25 +1,11 @@
-class LocalEmail
- include CouchRest::Model::Embeddable
- include Email
-
- property :username, String
-
- before_validation :strip_domain_if_needed
-
- validates :username,
- :presence => true,
- :format => { :with => /\A([^@\s]+)(@#{APP_CONFIG[:domain]})?\Z/i, :message => "needs to be a valid login or email address @#{APP_CONFIG[:domain]}"}
+class LocalEmail < Email
+=begin
validate :unique_on_server
validate :unique_alias_for_user
validate :differs_from_login
+=end
- validates :casted_by, :presence => true
-
- def email
- return '' if username.nil?
- username + '@' + APP_CONFIG[:domain]
- end
def email=(value)
return if value.blank?