diff options
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 |