summaryrefslogtreecommitdiff
path: root/app/models/unauthenticated_user.rb
blob: 7845a6fe843019b495e3431f64aba2dba733e52e (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
# The nil object for the user class
class UnauthenticatedUser < Object

  def effective_service_level
    ServiceLevel.new id: APP_CONFIG[:unauthenticated_service_level]
  end

  def is_admin?
    false
  end

  def id
    nil
  end

  def email_address
    nil
  end

  def login
    nil
  end

  def messages
    []
  end
end