feat: auto auth detect (#299)

This commit is contained in:
Ryan Brink
2022-08-19 09:46:41 -06:00
committed by GitHub
parent 196fba790a
commit e589d917c8
13 changed files with 497 additions and 28 deletions

View File

@ -92,9 +92,6 @@ private fun Route.locationDocumentation() {
get = GetInfo.builder {
summary("Get user by id")
description("A very neat endpoint!")
security = mapOf(
"basic" to emptyList()
)
response {
responseCode(HttpStatusCode.OK)
responseType<ExampleResponse>()