Class: Spotlight::SitesController

Inherits:
ApplicationController show all
Defined in:
app/controllers/spotlight/sites_controller.rb

Overview

Global site configuration

Instance Method Summary collapse

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

Methods included from Config

#exhibit_specific_blacklight_config

Instance Method Details

#editObject



9
10
# File 'app/controllers/spotlight/sites_controller.rb', line 9

def edit
end

#edit_exhibitsObject



12
13
# File 'app/controllers/spotlight/sites_controller.rb', line 12

def edit_exhibits
end

#updateObject



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

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.full_messages.join('<br>'.html_safe)
    render action: :edit
  end
end