diff options
author | elijah <elijah@riseup.net> | 2016-01-31 14:43:19 -0800 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2016-01-31 15:10:10 -0800 |
commit | e7e16318d056dbd9ec272085487cce6039627b09 (patch) | |
tree | 6ff86c1ae638da1ad620924037ccd41f9418b4b8 /app/models/anonymous_user.rb | |
parent | 16fb1c2bf33ca418a6db06217e286964077a730f (diff) |
remove cert fingerprints for disabled users, so that they cannot send email anymore. closes #7690
Diffstat (limited to 'app/models/anonymous_user.rb')
-rw-r--r-- | app/models/anonymous_user.rb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/app/models/anonymous_user.rb b/app/models/anonymous_user.rb index 73e95e5..5745316 100644 --- a/app/models/anonymous_user.rb +++ b/app/models/anonymous_user.rb @@ -12,7 +12,7 @@ class AnonymousUser < Object def id nil end - + def has_payment_info? false end @@ -37,4 +37,7 @@ class AnonymousUser < Object true end + def enabled? + false + end end |