about summary refs log tree commit diff
path: root/app/policies/rule_policy.rb
blob: 51b2a69776809d4335ef1f675226a860cf879f01 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

class RulePolicy < ApplicationPolicy
  def index?
    role.can?(:manage_rules)
  end

  def create?
    role.can?(:manage_rules)
  end

  def update?
    role.can?(:manage_rules)
  end

  def destroy?
    role.can?(:manage_rules)
  end
end