From 62bbc0a0712328e366e8426d3a8d9c650740a22f Mon Sep 17 00:00:00 2001 From: Methapon2001 <61303214+Methapon2001@users.noreply.github.com> Date: Fri, 5 Apr 2024 10:57:14 +0700 Subject: [PATCH] fix: missing auth --- src/controllers/customer-controller.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/controllers/customer-controller.ts b/src/controllers/customer-controller.ts index 97f3625..d993eb5 100644 --- a/src/controllers/customer-controller.ts +++ b/src/controllers/customer-controller.ts @@ -34,6 +34,7 @@ function imageLocation(id: string) { @Route("api/customer") @Tags("Customer") +@Security("keycloak") export class CustomerController extends Controller { @Post() async create(@Request() req: RequestWithUser, @Body() body: CustomerCreate) {