Class: CurationConcerns::WorkIndexer
- Inherits:
-
ActiveFedora::IndexingService
- Object
- ActiveFedora::IndexingService
- CurationConcerns::WorkIndexer
- Includes:
- IndexesThumbnails, IndexesWorkflow
- Defined in:
- app/indexers/curation_concerns/work_indexer.rb
Constant Summary
Constants included from IndexesWorkflow
Instance Method Summary collapse
Methods included from IndexesWorkflow
#index_suppressed, #index_workflow_fields, #suppressed_field, #workflow_role_field, #workflow_roles, #workflow_state_name_field
Methods included from IndexesThumbnails
#index_thumbnails, #thumbnail_path
Instance Method Details
#generate_solr_document ⇒ Object
6 7 8 9 10 11 12 13 |
# File 'app/indexers/curation_concerns/work_indexer.rb', line 6 def generate_solr_document super.tap do |solr_doc| solr_doc[Solrizer.solr_name('member_ids', :symbol)] = object.member_ids solr_doc[Solrizer.solr_name('member_of_collections', :symbol)] = object.member_of_collections.map(&:first_title) solr_doc[Solrizer.solr_name('member_of_collection_ids', :symbol)] = object.member_of_collections.map(&:id) Solrizer.set_field(solr_doc, 'generic_type', 'Work', :facetable) end end |