diff options
Diffstat (limited to 'app/policies')
-rw-r--r-- | app/policies/tag_policy.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/policies/tag_policy.rb b/app/policies/tag_policy.rb index c63de01db..aaf70fcab 100644 --- a/app/policies/tag_policy.rb +++ b/app/policies/tag_policy.rb @@ -5,11 +5,11 @@ class TagPolicy < ApplicationPolicy staff? end - def hide? + def show? staff? end - def unhide? + def update? staff? end end |