upload_cache_policy.rb 323 B

123456789101112131415161718
  1. # Copyright (C) 2012-2023 Zammad Foundation, https://zammad-foundation.org/
  2. class UploadCachePolicy < ApplicationPolicy
  3. # UploadCache is currently not restricted other than knowing the form_id
  4. # to access the data.
  5. def show?
  6. true
  7. end
  8. def destroy?
  9. true
  10. end
  11. def user_required?
  12. false
  13. end
  14. end