Merged PR 96: 外部連携APISwaggerエラー修正

## 概要
[Task1732: 外部連携APISwaggerエラー修正](https://paruru.nds-tyo.co.jp:8443/tfs/ReciproCollection/fa4924a4-d079-4fab-9fb5-a9a11eb205f0/_workitems/edit/1732)

- Swaggerの構文で不要な文言が残ったままでしたので削除しました。

## レビューポイント
- 共有

## UIの変更
無し

## 動作確認状況
- ローカルで確認
  - Swaggerでエラーがないことを確認
This commit is contained in:
makabe.t 2023-05-10 23:54:20 +00:00
parent a740ec3c36
commit 904d65780b
2 changed files with 1 additions and 3 deletions

View File

@ -1233,8 +1233,7 @@
"bearer": {
"scheme": "bearer",
"bearerFormat": "JWT",
"type": "http",
"in": "header"
"type": "http"
}
},
"schemas": {

View File

@ -39,7 +39,6 @@ async function bootstrap() {
type: 'http',
scheme: 'bearer',
bearerFormat: 'JWT',
in: 'header',
})
.build();
const document = SwaggerModule.createDocument(app, options);