about summary refs log blame commit diff
path: root/app/policies/rule_policy.rb
blob: 6a4def00900f3cbbc76ede84665c926f0bd2bfe8 (plain) (tree)

















                                    
# frozen_string_literal: true

class RulePolicy < ApplicationPolicy
  def index?
    staff?
  end

  def create?
    admin?
  end

  def update?
    admin?
  end

  def destroy?
    admin?
  end
end