Files
nairobi/app/controllers/admin/poll/questions/answers/images_controller.rb
Javi Martín ac495e7523 Remove unnecessary code in poll images controller
We're already loading the answer with a `before_action`.
2021-07-13 16:58:13 +02:00

43 lines
846 B
Ruby

class Admin::Poll::Questions::Answers::ImagesController < Admin::Poll::BaseController
include ImageAttributes
before_action :load_answer, except: :destroy
def index
end
def new
end
def create
@answer.attributes = images_params
if @answer.save
redirect_to admin_answer_images_path(@answer),
notice: t("flash.actions.create.poll_question_answer_image")
else
render :new
end
end
def destroy
@image = ::Image.find(params[:id])
@image.destroy!
respond_to do |format|
format.js { render layout: false }
end
end
private
def images_params
params.require(:poll_question_answer).permit(:answer_id,
images_attributes: image_attributes)
end
def load_answer
@answer = ::Poll::Question::Answer.find(params[:answer_id])
end
end