Sha256: 6d0f8facc946a2d81febe819f37fd7f04907f7f11d3984c5bb8a263a9d4b90c2
Contents?: true
Size: 1.67 KB
Versions: 1
Compression:
Stored size: 1.67 KB
Contents
# # Copyright 2014 Red Hat, Inc. # # This software is licensed to you under the GNU General Public # License as published by the Free Software Foundation; either version # 2 of the License (GPLv2) or (at your option) any later version. # There is NO WARRANTY for this software, express or implied, # including the implied warranties of MERCHANTABILITY, # NON-INFRINGEMENT, or FITNESS FOR A PARTICULAR PURPOSE. You should # have received a copy of GPLv2 along with this software; if not, see # http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. module Katello module Glue::ElasticSearch::HostCollection def self.included(base) base.send :include, Ext::IndexedModel base.class_eval do update_related_indexes :systems, :name add_system_hook lambda { |system| system.update_host_collections } remove_system_hook lambda { |system| system.update_host_collections } index_options :extended_json => :extended_index_attrs, :json => {:only => [:id, :organization_id, :name, :description, :max_content_hosts]}, :display_attrs => [:name, :description, :system] mapping do indexes :name, :type => 'string', :analyzer => :kt_name_analyzer indexes :description, :type => 'string', :analyzer => :kt_name_analyzer indexes :name_sort, :type => 'string', :index => :not_analyzed indexes :name_autocomplete, :type => 'string', :analyzer => 'autcomplete_name_analyzer' end end end def extended_index_attrs {:name_sort => name.downcase, :name_autocomplete => self.name, :system => self.systems.collect { |s| s.name } } end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
katello-2.2.2 | app/models/katello/glue/elastic_search/host_collection.rb |