summaryrefslogtreecommitdiff
path: root/app/models/anonymous_user.rb
blob: 87239eb0a69e4e71cc7e082b09744a1040d9a510 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# The nil object for the user class
class AnonymousUser < Object

  def effective_service_level
    AnonymousServiceLevel.new
  end

  def is_admin?
    false
  end

  def id
    nil
  end

  def email
    nil
  end

  def email_address
    nil
  end

  def login
    nil
  end

  def messages
    []
  end
end