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, #redirect_back, #resource_masthead?, #search_action_url, #search_facet_url

Methods included from Config

#exhibit_specific_blacklight_config

Instance Method Details

#editObject



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

def edit; end

#edit_exhibitsObject



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

def edit_exhibits; end

#tagsObject



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

def tags
  authorize! :tag, @site

  respond_to do |format|
    format.json { render json: Spotlight::Exhibit.all_tags.map(&:name) }
  end
end

#updateObject



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

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