Sha256: 92b37093cb7fcf73a37cfcd2bd36fe5e4da2cb48b9d62ba445a2b16a8b7cbda4
Contents?: true
Size: 1.28 KB
Versions: 24
Compression:
Stored size: 1.28 KB
Contents
# frozen_string_literal: true 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: %i[id display label weight], masthead_attributes: featured_image_params, thumbnail_attributes: featured_image_params) end end end
Version data entries
24 entries across 24 versions & 1 rubygems