about summary refs log tree commit diff
path: root/app/policies/tag_policy.rb
blob: bdfcec0c96c9dd34dd97224342174941ac26f9f4 (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 TagPolicy < ApplicationPolicy
  def index?
    staff?
  end

  def show?
    staff?
  end

  def update?
    staff?
  end

  def review?
    staff?
  end
end