account_warning_preset_policy.rb 215 B

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