summaryrefslogtreecommitdiff
path: root/users/app/models/remote_email.rb
blob: 4fe7425126e02199841baadcfe5ac6b853f9e770 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class RemoteEmail
  include CouchRest::Model::Embeddable
  include Email

  property :email, String

  def username
    email.spilt('@').first
  end

  def domain
    email.split('@').last
  end
end