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

class TagPolicy < ApplicationPolicy
  def index?
    staff?
  end

  def show?
    staff?
  end

  def update?
    staff?
  end
end