Ktor-OpenAPI-Generator
Ktor-OpenAPI-Generator copied to clipboard
Ktor OpenAPI/Swagger 3 Generator
Hi, I just saw this project and it looks very, very interesting. I am trying to figure out how this project differs to https://github.com/nielsfalk/ktor-swagger Does this have any features the...
How to auth
It seems that the info in https://github.com/papsign/Ktor-OpenAPI-Generator/issues/8#issuecomment-561229340 is irrelevant: classes and functions are missing... I want to make my own OAuth service to be used by the main service to...
So, hopefully this will be the last one. In our application we have ``` install(Authentication) { jwt(configure = authenticationProvider) } ``` and I would like for routes within the `apiRouting`...
I've already added annotation `@get:JsonIgnore` for my fields. It works fine for runtime requests / responses. But I need to hide some fields in swagger doc for not misleading frontend-developers....
I want to get an analog ```yaml responses: '400': desctiprion: "Parse error" ``` But with code below i just get "Bad request" in description ``` kotlin apiRouting { route("example/create") {...
I'm wondering how one would suggest altering the code concerning validations in such a way that a conditional validator can be incorporated that is dependent on other values. For example...
Hello there, is Ktor-OpenAPI-Generator compatible with Ktor 3.0.0? I tried to make this library working on my new project with Ktor 3.0.0 and it looks like it does not generate...