8 lines
153 B
Ruby
8 lines
153 B
Ruby
class Ability
|
|
include CanCan::Ability
|
|
|
|
def initialize(client)
|
|
client ||= Client.new # guest user (not logged in)
|
|
can :manage, :all
|
|
end
|
|
end
|