settings_policy.rb 137 B

1234567891011
  1. # frozen_string_literal: true
  2. class SettingsPolicy < ApplicationPolicy
  3. def update?
  4. admin?
  5. end
  6. def show?
  7. admin?
  8. end
  9. end