7 lines
112 B
Ruby
7 lines
112 B
Ruby
class Employees::Ability
|
|
include CanCan::Ability
|
|
def initialize(employee)
|
|
can :read, Supplier
|
|
end
|
|
end
|