ignore.rb 401 B

12345678910111213141516171819202122
  1. # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
  2. class FormUpdater::StoreValue::Ignore < FormUpdater::StoreValue::Base
  3. def can_handle_field?(field:, value:)
  4. ignored_fields.include? field
  5. end
  6. def omit_field?(field:, value:)
  7. true
  8. end
  9. private
  10. def ignored_fields
  11. %w[
  12. attachments
  13. security
  14. ticket_duplicate_detection
  15. ]
  16. end
  17. end