Sha256: 3611bc7cbf9647a13829414a1434e335895d03c7dc9e2a17ef5eff6f2f47b54f
Contents?: true
Size: 1.02 KB
Versions: 1
Compression:
Stored size: 1.02 KB
Contents
module Spotlight class HomePagesController < Spotlight::PagesController include Blacklight::SearchHelper include Spotlight::Catalog load_and_authorize_resource through: :exhibit, singleton: true, instance_name: 'page' before_filter :attach_breadcrumbs, except: :show def edit add_breadcrumb t(:'spotlight.curation.sidebar.feature_pages'), exhibit_feature_pages_path(@exhibit) add_breadcrumb @page.title, [:edit, @exhibit, @page] super end def index redirect_to exhibit_feature_pages_path(@exhibit) end def show if @page.display_sidebar? @response, @document_list = get_search_results end if @page.nil? or !@page.published? render '/catalog/index' else render 'show' end end private alias_method :search_action_url, :exhibit_search_action_url alias_method :search_facet_url, :exhibit_search_facet_url def allowed_page_params super.concat [:display_title, :display_sidebar] end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
blacklight-spotlight-0.4.1 | app/controllers/spotlight/home_pages_controller.rb |