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

  def unhide?
    staff?
  end
end