finatra-swagger icon indicating copy to clipboard operation
finatra-swagger copied to clipboard

Swagger Support For Finatra

Results 13 finatra-swagger issues
Sort by recently updated
recently updated
newest added

hello, is there plan to release new versions supporting Finatra v23? as of now there is Finatra [23.11.0](https://mvnrepository.com/artifact/com.twitter/finatra-http-server_2.12/23.11.0). thank you! JH

hi, I'm new to this library. I can't see from the code where `example_set_flag` is produced. Is it possible for the users to suppress the generation of this property? Thanks...

dsl can be implemented with line "override protected val dsl = self" ref: https://github.com/xiaodongw/swagger-finatra/blob/master/src/main/scala/com/github/xiaodongw/swagger/finatra/SwaggerSupport.scala#L7 https://github.com/jakehschwartz/finatra-swagger/blob/e40474826506112c2500c1166c393ff77cd25e95/src/main/scala/com/jakehschwartz/finatra/swagger/SwaggerController.scala#L7

Hello, I'd like to be able to get the json spec at build time. (the title may have spoiled it, sry). I'm trying to dig into how the `io.swagger.models.Swagger` is...

hacktoberfest

Hi! we have request bodies that are lists, so we are using the `.request[List[Something]]` method on `FinatraOperation`. When going to Scala 2.13, the `List` type doesn't extend `Product` anymore, which...

Hi, jakehschwartz: traced this commit that formParam have been removed https://github.com/jakehschwartz/finatra-swagger/commit/50dc183052473f24f27c1cbdf2da3a97503bd12e how can we add it back?

When modelling an API with a `List` (found similar issues with a Map, _eg_: ``` .responseWith[List[String]](200, "Some list") ``` Generated swagger file misses the type of the elements: ``` responses:...