28 lines
588 B
Ruby
28 lines
588 B
Ruby
class Ability
|
|
attr_reader :resource
|
|
include CanCan::Ability
|
|
def initialize(resource)
|
|
@resource = resource
|
|
case resource
|
|
when Employee then supplier_authorization
|
|
end
|
|
end
|
|
|
|
def supplier_authorization
|
|
if resource.settings.manager?
|
|
can :manage, :all
|
|
#cam :mark_as_open, Supplier
|
|
else
|
|
can :read, :all
|
|
can :qr_codes, Table
|
|
can :home, Supplier
|
|
can :current, :all
|
|
can :close, List
|
|
can :mark_helped, List
|
|
can :mark_in_process, Order
|
|
can :mark_delivered, Order
|
|
can :cancel, Order
|
|
end
|
|
end
|
|
end
|