find champ by dossier stable_id row_id

This commit is contained in:
Benoit Queyron 2024-07-05 15:27:39 +02:00
parent fc385208db
commit ebea9e3818
No known key found for this signature in database
GPG key ID: 9E723480C7317E22
2 changed files with 9 additions and 2 deletions

View file

@ -55,7 +55,7 @@ class Attachment::EditComponent < ApplicationComponent
end
def destroy_attachment_path
attachment_path(champ: @champ)
attachment_path(dossier_id: champ&.dossier_id, stable_id: champ&.stable_id, row_id: champ&.row_id)
end
def attachment_input_class

View file

@ -21,11 +21,18 @@ class AttachmentsController < ApplicationController
@attachment.purge_later
flash.notice = 'La pièce jointe a bien été supprimée.'
@champ = Champ.find(params[:champ]) if params[:champ]
@champ = find_champ if params[:dossier_id]
respond_to do |format|
format.turbo_stream
format.html { redirect_back(fallback_location: root_url) }
end
end
private
def find_champ
dossier = policy_scope(Dossier).includes(:champs).find(params[:dossier_id])
dossier.champs.find_by(stable_id: params[:stable_id], row_id: params[:row_id])
end
end