Sha256: 87ea8462d20604b60ca690472bda089a6d8e86a9d3e277fc91a1d68d07d1d1ed
Contents?: true
Size: 1.28 KB
Versions: 4
Compression:
Stored size: 1.28 KB
Contents
# frozen_string_literal: true ## # Simplified catalog controller class CatalogController < ApplicationController include Blacklight::Catalog configure_blacklight do |config| ## Default parameters to send to solr for all search-like requests. See also SolrHelper#solr_search_params config.default_solr_params = { qt: 'search', rows: 10, fl: '*' } config.document_solr_path = 'get' config.document_unique_id_param = 'ids' # solr field configuration for search results/index views config.index.title_field = 'full_title_tesim' config.add_results_collection_tool(:sort_widget) config.add_results_collection_tool(:per_page_widget) config.add_results_collection_tool(:view_type_group) config.add_search_field 'all_fields', label: I18n.t('spotlight.search.fields.search.all_fields') config.add_sort_field 'relevance', sort: 'score desc', label: I18n.t('spotlight.search.fields.sort.relevance') config.add_field_configuration_to_solr_request! # enable facets: # https://github.com/projectblacklight/spotlight/issues/1812#issuecomment-327345318 config.add_facet_fields_to_solr_request! # Set which views by default only have the title displayed, e.g., # config.view.gallery.title_only_by_default = true end end
Version data entries
4 entries across 4 versions & 1 rubygems