tag_policy.rb 195 B

12345678910111213141516171819
  1. # frozen_string_literal: true
  2. class TagPolicy < ApplicationPolicy
  3. def index?
  4. staff?
  5. end
  6. def show?
  7. staff?
  8. end
  9. def update?
  10. staff?
  11. end
  12. def review?
  13. staff?
  14. end
  15. end