fix(export.pdf): expert should not have access to messagerie when it was disabled

This commit is contained in:
Martin 2024-03-07 08:39:32 +01:00
parent 84f995bd47
commit f4d2f1ddf5
7 changed files with 11 additions and 8 deletions

View file

@ -2,7 +2,7 @@ class API::V2::DossiersController < API::V2::BaseController
before_action :ensure_dossier_present
def pdf
@acls = PiecesJustificativesService.new(user_profile: Administrateur.new).acl_for_dossier_export
@acls = PiecesJustificativesService.new(user_profile: Administrateur.new).acl_for_dossier_export(dossier.procedure)
render(template: 'dossiers/show', formats: [:pdf])
end