summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjessib <jessib@riseup.net>2013-09-05 13:10:23 -0700
committerjessib <jessib@riseup.net>2013-09-05 13:10:23 -0700
commitb79d8ae03339e2957c50111f0eae405ca1440674 (patch)
tree1ea3073399a88645d6d5f5b1437603b72ba94664
parent07d0f6fe1d80cb730bd12a03a107c18d18779acc (diff)
Move handle method to Email model and have it work for local and non-local emails.
-rw-r--r--users/app/models/email.rb4
-rw-r--r--users/app/models/local_email.rb4
2 files changed, 4 insertions, 4 deletions
diff --git a/users/app/models/email.rb b/users/app/models/email.rb
index 1bcff1c..89c31bb 100644
--- a/users/app/models/email.rb
+++ b/users/app/models/email.rb
@@ -19,4 +19,8 @@ class Email < String
self
end
+ def handle
+ self.split('@').first
+ end
+
end
diff --git a/users/app/models/local_email.rb b/users/app/models/local_email.rb
index c1f7c11..6303bb6 100644
--- a/users/app/models/local_email.rb
+++ b/users/app/models/local_email.rb
@@ -20,10 +20,6 @@ class LocalEmail < Email
[handle]
end
- def handle
- gsub(/@#{domain}/i, '')
- end
-
def domain
LocalEmail.domain
end