Class: Spotlight::DashboardsController

Inherits:
ApplicationController show all
Includes:
Base
Defined in:
app/controllers/spotlight/dashboards_controller.rb

Overview

Exhibit dashboard controller

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_masthead=, #current_site, #exhibit_masthead?, #exhibit_search_action_url, #exhibit_search_facet_url, #resource_masthead?, #search_action_url, #search_facet_url

Instance Method Details

#_prefixesObject



31
32
33
# File 'app/controllers/spotlight/dashboards_controller.rb', line 31

def _prefixes
  @_prefixes ||= super + ['spotlight/catalog', 'catalog']
end

#analyticsObject



25
26
27
28
29
# File 'app/controllers/spotlight/dashboards_controller.rb', line 25

def analytics
  authorize! :curate, @exhibit

  attach_analytics_breadcrumbs
end

#showObject



16
17
18
19
20
21
22
23
# File 'app/controllers/spotlight/dashboards_controller.rb', line 16

def show
  authorize! :curate, @exhibit

  @pages = @exhibit.pages.recent.limit(5)
  @solr_documents = load_recent_solr_documents 5

  attach_dashboard_breadcrumbs
end