Swagger: Add information to API Token header (#7585)

* Add a description to the API Token header for swagger
release/v1.10
zeripath 5 years ago committed by GitHub
parent 2c5c458dd7
commit 635e7b38bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -43,6 +43,7 @@
// type: apiKey // type: apiKey
// name: Authorization // name: Authorization
// in: header // in: header
// description: API tokens must be prepended with "token" followed by a space.
// SudoParam: // SudoParam:
// type: apiKey // type: apiKey
// name: sudo // name: sudo

@ -10390,6 +10390,7 @@
"in": "query" "in": "query"
}, },
"AuthorizationHeaderToken": { "AuthorizationHeaderToken": {
"description": "API tokens must be prepended with \"token\" followed by a space.",
"type": "apiKey", "type": "apiKey",
"name": "Authorization", "name": "Authorization",
"in": "header" "in": "header"

Loading…
Cancel
Save