~cytrogen/masto-fe

ref: 12c43e4ab51e0558628e39f7cf2bb2a84341018d masto-fe/app/policies/rule_policy.rb -rw-r--r-- 271 bytes
12c43e4a — Claire Re-add StatsD support through the `nsa` gem (#26310) 2 years ago
                                                                                
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