Class: Spotlight::BrowseController

Inherits:
ApplicationController show all
Includes:
Base, Catalog::AccessControlsEnforcement
Defined in:
app/controllers/spotlight/browse_controller.rb

Overview

Index and read actions for browse (see SearchesController for the curator’s create-update-delete actions)

Instance Method Summary collapse

Methods included from Base

#autocomplete_json_response, #autocomplete_json_response_for_document, #blacklight_config

Methods included from Config

#exhibit_specific_blacklight_config

Methods included from Controller

#blacklight_config, #current_exhibit, #current_masthead, #current_masthead=, #default_masthead?, #exhibit_masthead?, #exhibit_search_action_url, #exhibit_search_facet_url, #search_action_url, #search_facet_url

Instance Method Details

#indexObject



16
17
18
# File 'app/controllers/spotlight/browse_controller.rb', line 16

def index
  @searches = @exhibit.searches.published
end

#showObject



20
21
22
23
24
25
# File 'app/controllers/spotlight/browse_controller.rb', line 20

def show
  blacklight_config.index.document_actions = blacklight_config.browse.document_actions

  add_breadcrumb @search.title, exhibit_browse_path(@exhibit, @search)
  (@response, @document_list) = search_results(@search.query_params.with_indifferent_access.merge(params), search_params_logic)
end