From 788cc3f9c3c212d3338d77e27391ae270f52e410 Mon Sep 17 00:00:00 2001 From: mgtennant <100305096+mgtennant@users.noreply.github.com> Date: Tue, 14 Nov 2023 11:07:31 -0800 Subject: [PATCH] update backend with console log --- backend/src/document_template/document_template.controller.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/src/document_template/document_template.controller.ts b/backend/src/document_template/document_template.controller.ts index 3946130b..af7ac48f 100644 --- a/backend/src/document_template/document_template.controller.ts +++ b/backend/src/document_template/document_template.controller.ts @@ -26,6 +26,7 @@ export class DocumentTemplateController { file: Express.Multer.File, @Body() params: CreateDocumentTemplateDto ): Promise { + console.log('Uploading new template'); const params2 = { document_type: params.document_type, template_author: params.template_author,