diff options
Diffstat (limited to 'apps/docs/openapi.json')
| -rw-r--r-- | apps/docs/openapi.json | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/apps/docs/openapi.json b/apps/docs/openapi.json index 473b08cd..8ee782ca 100644 --- a/apps/docs/openapi.json +++ b/apps/docs/openapi.json @@ -11,6 +11,11 @@ "description": "Production Server" } ], + "security": [ + { + "ApiKeyAuth": [] + } + ], "paths": { "/add": { "post": { @@ -375,5 +380,15 @@ } } }, - "components": { "schemas": {} } + "components": { + "schemas": {}, + "securitySchemes": { + "ApiKeyAuth": { + "type": "apiKey", + "in": "header", + "name": "x-api-key", + "description": "API key for authentication" + } + } + } } |