tab/app/models/client_ability.rb

9 lines
159 B
Ruby
Raw Normal View History

2015-09-09 18:11:59 +00:00
class ClientAbility
2015-09-09 09:24:45 +00:00
include CanCan::Ability
def initialize(client)
client ||= Client.new # guest user (not logged in)
can :manage, :all
end
end