search_index.rb 310 B

123456789101112
  1. # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
  2. module Overview::SearchIndex
  3. extend ActiveSupport::Concern
  4. def search_index_attribute_lookup(include_references: true)
  5. attributes = super
  6. attributes.delete('view')
  7. attributes.delete('order')
  8. attributes
  9. end
  10. end