diff options
Diffstat (limited to 'users/app/models/email.rb')
-rw-r--r-- | users/app/models/email.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/users/app/models/email.rb b/users/app/models/email.rb index 904acb9..6d82f2a 100644 --- a/users/app/models/email.rb +++ b/users/app/models/email.rb @@ -22,7 +22,12 @@ module Email other.is_a?(Email) ? self.email == other.email : self.email == other end + def to_partial_path + "emails/email" + end + def to_param email end + end |