Browse Source
Swagger: Add information to API Token header (#7585)
* Add a description to the API Token header for swagger
for-closed-social
zeripath
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
2 additions and
0 deletions
-
routers/api/v1/api.go
-
templates/swagger/v1_json.tmpl
|
|
@ -43,6 +43,7 @@ |
|
|
|
// type: apiKey
|
|
|
|
// name: Authorization
|
|
|
|
// in: header
|
|
|
|
// description: API tokens must be prepended with "token" followed by a space.
|
|
|
|
// SudoParam:
|
|
|
|
// type: apiKey
|
|
|
|
// name: sudo
|
|
|
|
|
|
@ -10390,6 +10390,7 @@ |
|
|
|
"in": "query" |
|
|
|
}, |
|
|
|
"AuthorizationHeaderToken": { |
|
|
|
"description": "API tokens must be prepended with \"token\" followed by a space.", |
|
|
|
"type": "apiKey", |
|
|
|
"name": "Authorization", |
|
|
|
"in": "header" |
|
|
|