Files
plottservice/app/policies/operator/job_policy.rb
2024-09-18 07:16:20 +02:00

10 lines
148 B
Ruby

class Operator::JobPolicy < ApplicationPolicy
pre_check :allow_operators
private
def allow_operators
allow! if user.operator?
end
end