Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
nicobret committed Nov 7, 2024
1 parent c515cfd commit 475634c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion api/src/utils/pdf-renderer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export async function getAllPdfTemplates() {
}

await fs.mkdir(path.join(config.IMAGES_ROOTDIR, "convocation"), { recursive: true });
for (const convoc of ["convocation/convocation_template_base_2024_V2.png", "convocation/convocation_template_base_NC.png"]) {
for (const convoc of ["convocation/convocation_template_base_2024_V3.png", "convocation/convocation_template_base_NC.png"]) {
await getTemplate(convoc);
}
}
2 changes: 1 addition & 1 deletion api/src/young/youngCertificateService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const getCertificateTemplate = (young: YoungDto) => {
if (young.cohort === "Octobre 2023 - NC" && young.source !== "CLE") {
return "convocation/convocation_template_base_NC.png";
}
return "convocation/convocation_template_base_2024_V2.png";
return "convocation/convocation_template_base_2024_V3.png";
};

export const isLocalTransport = (young: YoungDto) => {
Expand Down

0 comments on commit 475634c

Please sign in to comment.