Sha256: 9d5d6c6c1eba776905c804f85ad022dcada875f55c62b795bc32d1694e5d9ea9
Contents?: true
Size: 1.58 KB
Versions: 13
Compression:
Stored size: 1.58 KB
Contents
class Pulitzer::PartialTypesController < Pulitzer::ApplicationController before_action :get_partial_type, only: [:show, :edit, :update, :destroy] def index @ffst = Pulitzer::FreeFormSectionType.find(params[:ffst_id]) @partial_types = @ffst.partial_types render partial: 'index', locals: { ffst: @ffst } end def new @ffst = Pulitzer::FreeFormSectionType.find(params[:ffst_id]) @partial_type = @ffst.partial_types.build render partial: 'new', locals: { ffst: @ffst, partial_type: @partial_type } end def create @free_form_section_type = Pulitzer::FreeFormSectionType.find partial_type_params[:free_form_section_type_id] @partial_type = @free_form_section_type.partial_types.create partial_type_params if @partial_type && @partial_type.errors.empty? Pulitzer::CreateFreeFormSectionPartials.new(@partial_type).call render partial: 'show_wrapper', locals: { partial_type: @partial_type } else render partial: 'new', locals: { partial_type: @partial_type } end end def show render partial: 'show', locals: { partial_type: @partial_type } end def destroy @partial_type.destroy head :ok end def update_all partial_types = Pulitzer::PartialType.find params[:partial_type] partial_types.each do |pt| new_sort_order = params[:partial_type].index(pt.id.to_s) pt.update_attribute(:sort_order, new_sort_order) end head :ok end protected def get_partial_type @partial_type = Pulitzer::PartialType.find(params[:id]) end def partial_type_params params[:partial_type].permit! end end
Version data entries
13 entries across 13 versions & 1 rubygems