settings_policy.rb 233 B

123456789101112131415
  1. # frozen_string_literal: true
  2. class SettingsPolicy < ApplicationPolicy
  3. def update?
  4. role.can?(:manage_settings)
  5. end
  6. def show?
  7. role.can?(:manage_settings)
  8. end
  9. def destroy?
  10. role.can?(:manage_settings)
  11. end
  12. end