From 80d7f1d0e520fcd4d78e6b16de809b95ff8f3f29 Mon Sep 17 00:00:00 2001 From: Methapon2001 <61303214+Methapon2001@users.noreply.github.com> Date: Tue, 10 Dec 2024 10:48:17 +0700 Subject: [PATCH] fix: auth in head --- src/controllers/07-task-controller.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/controllers/07-task-controller.ts b/src/controllers/07-task-controller.ts index bde6710..7252a9e 100644 --- a/src/controllers/07-task-controller.ts +++ b/src/controllers/07-task-controller.ts @@ -413,7 +413,6 @@ export class TaskOrderAttachmentController extends Controller { } @Head("attachment/{name}") - @Security("keycloak") async headAttachment(@Path() taskId: string, @Path() name: string) { return await getPresigned("head", fileLocation.task.attachment(taskId, name)); }