diff options
author | azul <azul@riseup.net> | 2014-05-14 08:41:13 +0200 |
---|---|---|
committer | azul <azul@riseup.net> | 2014-05-14 08:41:13 +0200 |
commit | c85028fba2a25f22b375b8714c2e1999c35f8e82 (patch) | |
tree | e9c6a5c25e0bb7acaddae1f34a9fd0de886bbeb8 /app/models/anonymous_user.rb | |
parent | 4843db127a5d5d038f227d9ffe5f0b83d95fd9f6 (diff) | |
parent | 3278e474a32ef4926b1dab0d97ca4df1c59aa2a0 (diff) |
Merge pull request #157 from azul/bugfix/5664-stop-email-autofill
Bugfix/5664 stop email autofill
Diffstat (limited to 'app/models/anonymous_user.rb')
-rw-r--r-- | app/models/anonymous_user.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/models/anonymous_user.rb b/app/models/anonymous_user.rb index 360a577..87239eb 100644 --- a/app/models/anonymous_user.rb +++ b/app/models/anonymous_user.rb @@ -13,6 +13,10 @@ class AnonymousUser < Object nil end + def email + nil + end + def email_address nil end |