diff --git a/dictation_server/src/api/odms/openapi.json b/dictation_server/src/api/odms/openapi.json index b08946e..7331140 100644 --- a/dictation_server/src/api/odms/openapi.json +++ b/dictation_server/src/api/odms/openapi.json @@ -1233,8 +1233,7 @@ "bearer": { "scheme": "bearer", "bearerFormat": "JWT", - "type": "http", - "in": "header" + "type": "http" } }, "schemas": { diff --git a/dictation_server/src/main.ts b/dictation_server/src/main.ts index 0dd1bb9..04ae4b3 100644 --- a/dictation_server/src/main.ts +++ b/dictation_server/src/main.ts @@ -39,7 +39,6 @@ async function bootstrap() { type: 'http', scheme: 'bearer', bearerFormat: 'JWT', - in: 'header', }) .build(); const document = SwaggerModule.createDocument(app, options);