Sha256: 135fc80d72558f69301da8a12a96149d2872eb993e95886632251a6e8c9a8f12
Contents?: true
Size: 954 Bytes
Versions: 13
Compression:
Stored size: 954 Bytes
Contents
## # 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_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! # 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
13 entries across 13 versions & 1 rubygems