about summary refs log tree commit diff
path: root/app/policies
diff options
context:
space:
mode:
Diffstat (limited to 'app/policies')
-rw-r--r--app/policies/tag_policy.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/app/policies/tag_policy.rb b/app/policies/tag_policy.rb
deleted file mode 100644
index c63de01db..000000000
--- a/app/policies/tag_policy.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-# frozen_string_literal: true
-
-class TagPolicy < ApplicationPolicy
-  def index?
-    staff?
-  end
-
-  def hide?
-    staff?
-  end
-
-  def unhide?
-    staff?
-  end
-end