Skip to content

Commit

Permalink
Lowercase basic auth scheme to avoid errors in swagger UI #100 (#101)
Browse files Browse the repository at this point in the history
  • Loading branch information
ozscheyge authored and mduesterhoeft committed May 10, 2019
1 parent 9650ac3 commit 0ac2c15
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ internal object SecuritySchemeGenerator {
if (hasAnyOperationWithSecurityName(this, BASIC_SECURITY_NAME)) {
components.addSecuritySchemes(BASIC_SECURITY_NAME, SecurityScheme().apply {
type = SecurityScheme.Type.HTTP
scheme = "Basic"
scheme = "basic"
})
}

Expand Down

0 comments on commit 0ac2c15

Please sign in to comment.