Files
mozo-backend/app/services/ability.rb
T
2015-02-18 22:36:47 +01:00

12 lines
244 B
Ruby

class Ability
include CanCan::Ability
def initialize(settings)
settings ||= SupplierEmployeesSettings.new(Supplier.new).for_employee(nil)
if settings.manager?
can :manage, :all
else
can :read, :all
end
end
end