Add _destroy parameter to nested image

This commit is contained in:
Senén Rodero Rodríguez
2017-09-23 18:33:30 +02:00
parent 77f63a4c44
commit d98d1312ca
6 changed files with 21 additions and 35 deletions

View File

@@ -80,7 +80,7 @@ class ProposalsController < ApplicationController
def proposal_params
params.require(:proposal).permit(:title, :question, :summary, :description, :external_url, :video_url,
:responsible_name, :tag_list, :terms_of_service, :geozone_id,
image_attributes: [:id, :title, :attachment, :cached_attachment, :user_id],
image_attributes: [:id, :title, :attachment, :cached_attachment, :user_id, :_destroy],
documents_attributes: [:id, :title, :attachment, :cached_attachment, :user_id, :_destroy] )
end