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 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

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

#tagsObject



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

def tags
  authorize! :tag, @site

  respond_to do |format|
    format.json { render json: Spotlight::Exhibit.all_tags.map(&:name) }
  end
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