Class: Spotlight::BrowseController

Inherits:
ApplicationController show all
Includes:
Base
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 Concerns::ApplicationController

#enabled_in_spotlight_view_type_configuration?, #field_enabled?

Methods included from Controller

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

Instance Method Details

#indexObject



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

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

#showObject



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

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)
end