demarches-normaliennes/app/controllers/concerns/preview_attestation_concern.rb
Colin Darie 934e86a465 refactor(attestation): groupe instructeur signature shared
Co-Authored-By: Christophe Robillard <christophe.robillard@beta.gouv.fr>
2023-09-22 10:24:16 +02:00

12 lines
410 B
Ruby

module PreviewAttestationConcern
extend ActiveSupport::Concern
included do
def preview_attestation
attestation_template = procedure.attestation_template || procedure.build_attestation_template
@attestation = attestation_template.render_attributes_for({ groupe_instructeur: groupe_instructeur })
render 'administrateurs/attestation_templates/show', formats: [:pdf]
end
end
end