Sha256: faf4043a6196a9967f34aa18941dc6f93d56de02db6a4f12a60c5046bdf85e8a
Contents?: true
Size: 1.56 KB
Versions: 1
Compression:
Stored size: 1.56 KB
Contents
class Pulitzer::PartialsController < Pulitzer::ApplicationController before_action :set_partial, except: [:new, :create, :update_all] def new @partial = Pulitzer::Partial.new(partial_params) @free_form_section = @partial.free_form_section render partial: 'new', locals: { partial: @partial } end def create @free_form_section = Pulitzer::FreeFormSection.find partial_params[:free_form_section_id] @partial = @free_form_section.partials.create partial_params if @partial && @partial.errors.empty? Pulitzer::CreatePartialContentElements.new(@partial).call render partial: 'show_wrapper', locals: { partial: @partial } else render partial: 'new', locals: {partial: @partial} end end def show render partial: 'show', locals: { partial: @partial } end def edit render partial: 'form', locals: { partial: @partial } end def update @partial.update partial_params render partial: 'show', locals: { partial: @partial } end def update_all partials = Pulitzer::Partial.find params[:partial] partials.each do |partial| new_sort_order = params[:partial].index(partial.id.to_s) partial.update_attribute(:sort_order, new_sort_order) end head :ok end def destroy @partial.destroy head :ok end def upgrade @partial = UpgradePartialVersion.new(@partial).call render partial: 'show', locals: { partial: @partial } end protected def partial_params params[:partial].permit! end def set_partial @partial = Pulitzer::Partial.find(params[:id]) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
pulitzer-0.15.12 | app/controllers/pulitzer/partials_controller.rb |