AyuntamientoMadrid/participacion

View on GitHub
app/controllers/admin/poll/questions/options/images_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Admin::Poll::Questions::Options::ImagesController < Admin::Poll::BaseController
  include ImageAttributes

  load_and_authorize_resource :option, class: "::Poll::Question::Option"
  load_and_authorize_resource only: [:destroy]

  def index
  end

  def new
  end

  def create
    @option.attributes = images_params
    authorize! :update, @option

    if @option.save
      redirect_to admin_option_images_path(@option),
                  notice: t("flash.actions.create.poll_question_option_image")
    else
      render :new
    end
  end

  def destroy
    @image.destroy!

    redirect_to admin_option_images_path(@image.imageable),
                notice: t("flash.actions.destroy.poll_question_option_image")
  end

  private

    def images_params
      params.require(:poll_question_option).permit(allowed_params)
    end

    def allowed_params
      [:option_id, images_attributes: image_attributes]
    end
end