trabajo-afectivo/app/models/organization/search_index.rb

24 lines
587 B
Ruby
Raw Permalink Normal View History

# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
2015-04-27 21:44:41 +00:00
class Organization
module SearchIndex
extend ActiveSupport::Concern
def search_index_attribute_lookup(include_references: true)
2016-07-06 06:13:44 +00:00
attributes = super
2015-04-27 21:44:41 +00:00
if include_references
# add org members for search index data
attributes['members'] = []
users = User.where(organization_id: id)
users.each do |user|
attributes['members'].push user.search_index_attribute_lookup(include_references: false)
end
end
2015-04-27 21:44:41 +00:00
2016-07-06 06:13:44 +00:00
attributes
2015-04-27 21:44:41 +00:00
end
end
2014-02-03 19:23:00 +00:00
end