From ec5cedce5a0d985c6f632d00cce1ddb97b8b006c Mon Sep 17 00:00:00 2001 From: sherl Date: Sat, 3 Jan 2026 00:29:45 +0100 Subject: [PATCH] fix: actually support JWT bearer authentication --- src/app.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.ts b/src/app.ts index 1110809..40eba41 100644 --- a/src/app.ts +++ b/src/app.ts @@ -50,7 +50,7 @@ AppDataSource.initialize().then(async () => { } }, security: [ - { bearerAuth: [] } + { BearerJWT: [] } ], }, apis: ['./src/routes/*.ts', './src/schemas/*.ts']