api: fix missing scheme in securitySchemes
closes #3883 Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
f3a72761c0
commit
400751ed3c
|
@ -31,4 +31,5 @@ class AuthentikAPIConfig(AppConfig):
|
||||||
"type": "apiKey",
|
"type": "apiKey",
|
||||||
"in": "header",
|
"in": "header",
|
||||||
"name": "Authorization",
|
"name": "Authorization",
|
||||||
|
"scheme": "bearer",
|
||||||
}
|
}
|
||||||
|
|
|
@ -38128,5 +38128,6 @@ components:
|
||||||
type: apiKey
|
type: apiKey
|
||||||
in: header
|
in: header
|
||||||
name: Authorization
|
name: Authorization
|
||||||
|
scheme: bearer
|
||||||
servers:
|
servers:
|
||||||
- url: /api/v3/
|
- url: /api/v3/
|
||||||
|
|
Reference in New Issue