You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
299 B

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