Class: Spotlight::SitesController
- Inherits:
-
ApplicationController
- Object
- ApplicationController
- ApplicationController
- Spotlight::SitesController
- Defined in:
- app/controllers/spotlight/sites_controller.rb
Overview
Global site configuration
Instance Method Summary collapse
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_path, #resource_masthead?, #search_action_url, #search_facet_path, #set_exhibit_locale_scope, #set_locale
Methods included from Config
#exhibit_specific_blacklight_config
Instance Method Details
#edit ⇒ Object
11 12 13 14 |
# File 'app/controllers/spotlight/sites_controller.rb', line 11 def edit t(:'spotlight.sites.home'), root_url t(:'spotlight.sites.edit.page_title') end |
#edit_exhibits ⇒ Object
16 17 18 19 |
# File 'app/controllers/spotlight/sites_controller.rb', line 16 def edit_exhibits t(:'spotlight.sites.home'), root_url t(:'spotlight.sites.edit_exhibits.page_title') end |
#tags ⇒ Object
30 31 32 33 34 35 36 |
# File 'app/controllers/spotlight/sites_controller.rb', line 30 def :tag, @site respond_to do |format| format.json { render json: Spotlight::Exhibit..map(&:name) } end end |
#update ⇒ Object
21 22 23 24 25 26 27 28 |
# File 'app/controllers/spotlight/sites_controller.rb', line 21 def update if @site.update(site_params) redirect_to exhibits_path, notice: t(:'helpers.submit.site.updated', model: @site.class.model_name.human.downcase) else flash[:alert] = @site.errors..join('<br>'.html_safe) render action: :edit end end |