diff options
Diffstat (limited to 'users/app/models')
-rw-r--r-- | users/app/models/remote_email.rb | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/users/app/models/remote_email.rb b/users/app/models/remote_email.rb deleted file mode 100644 index 4fe7425..0000000 --- a/users/app/models/remote_email.rb +++ /dev/null @@ -1,14 +0,0 @@ -class RemoteEmail - include CouchRest::Model::Embeddable - include Email - - property :email, String - - def username - email.spilt('@').first - end - - def domain - email.split('@').last - end -end |