Sha256: d8046c14647af7f80981d44acc4b872cd2978027e5a1a918ba786f98f365a2c3
Contents?: true
Size: 1.49 KB
Versions: 33
Compression:
Stored size: 1.49 KB
Contents
module Spotlight ## # Edit and update an exhibit's appearance class AppearancesController < Spotlight::ApplicationController before_action :authenticate_user! load_and_authorize_resource id_param: :exhibit_id, instance_name: 'exhibit', class: 'Spotlight::Exhibit', parent: false def update if @exhibit.update(exhibit_params) notice = t(:'helpers.submit.spotlight_default.updated', model: @exhibit.class.model_name.human.downcase) redirect_to edit_exhibit_appearance_path(@exhibit), notice: notice else render 'edit' end end def edit add_breadcrumb t(:'spotlight.exhibits.breadcrumb', title: @exhibit.title), @exhibit add_breadcrumb t(:'spotlight.configuration.sidebar.header'), exhibit_dashboard_path(@exhibit) add_breadcrumb t(:'spotlight.configuration.sidebar.appearance'), edit_exhibit_appearance_path(@exhibit) end protected def exhibit_params params.require(:exhibit).permit(:theme, main_navigations_attributes: [:id, :display, :label, :weight], masthead_attributes: featured_image_params, thumbnail_attributes: featured_image_params) end def featured_image_params [ :iiif_region, :iiif_tilesource, :iiif_manifest_url, :iiif_canvas_id, :iiif_image_id, :display, :source, :image, :document_global_id ] end end end
Version data entries
33 entries across 33 versions & 1 rubygems