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, #default_url_options, #exhibit_masthead?, #exhibit_search_action_url, #exhibit_search_facet_url, #resource_masthead?, #search_action_url, #search_facet_url, #set_exhibit_locale_scope, #set_locale

Instance Method Details

#_prefixesObject



34
35
36
# File 'app/controllers/spotlight/dashboards_controller.rb', line 34

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

#analyticsObject



28
29
30
31
32
# File 'app/controllers/spotlight/dashboards_controller.rb', line 28

def analytics
  authorize! :curate, @exhibit

  attach_analytics_breadcrumbs
end

#showObject



18
19
20
21
22
23
24
25
26
# File 'app/controllers/spotlight/dashboards_controller.rb', line 18

def show
  authorize! :curate, @exhibit

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

  attach_dashboard_breadcrumbs
end