Docs improvements (#359)

* Use Array since Javalin OpenAPI requires it to read the list generics

* Use custom Pager class for documentation
This commit is contained in:
Mitchell Syer
2022-05-21 06:12:10 -04:00
committed by GitHub
parent a6d012abd9
commit 5b0426a94c
6 changed files with 17 additions and 11 deletions

View File

@@ -37,7 +37,7 @@ object ExtensionController {
)
},
withResults = {
json<List<ExtensionDataClass>>(HttpCode.OK)
json<Array<ExtensionDataClass>>(HttpCode.OK)
}
)