summaryrefslogtreecommitdiff
path: root/app/models/guest.rb
blob: df287c277a79a6ee7a38ecf054e1dc62890f10d5 (plain)
1
2
3
4
5
6
7
class Guest
  class << self
    def can?(action, subject = :global)
      Ability.allowed?(nil, action, subject)
    end
  end
end