Merge pull request #4539 from betagouv/4163-suivi-automatique-apres-envoi-instructeur
permet le suivi auto d'un dossier après envoi instructeur
This commit is contained in:
commit
10ebb8a373
3 changed files with 4 additions and 0 deletions
|
@ -56,6 +56,7 @@ module Instructeurs
|
|||
recipients = Instructeur.find(params[:recipients])
|
||||
|
||||
recipients.each do |recipient|
|
||||
recipient.follow(dossier)
|
||||
InstructeurMailer.send_dossier(current_instructeur, dossier, recipient).deliver_later
|
||||
end
|
||||
|
||||
|
|
|
@ -4,6 +4,8 @@
|
|||
%p.tab-paragraph
|
||||
Vous êtes le seul instructeur assigné sur cette démarche
|
||||
- else
|
||||
%p.tab-paragrah.mb-1
|
||||
Le destinataire suivra automatiquement le dossier
|
||||
= form_for dossier, url: send_to_instructeurs_instructeur_dossier_path(dossier.procedure, dossier), method: :post, html: { class: 'form recipients-form' } do |f|
|
||||
.flex.justify-start.align-start
|
||||
= select_tag(:recipients,
|
||||
|
|
|
@ -48,6 +48,7 @@ describe Instructeurs::DossiersController, type: :controller do
|
|||
end
|
||||
|
||||
it { expect(response).to redirect_to(personnes_impliquees_instructeur_dossier_url) }
|
||||
it { expect(recipient.followed_dossiers).to include(dossier) }
|
||||
end
|
||||
|
||||
describe '#follow' do
|
||||
|
|
Loading…
Reference in a new issue