Hi all, hoping someone might be able to help me out, as I have been unable to find this info in the docs. Is it possible to specify that a swagger definition should only be generated for a specific context or group of routes?
@shdzzl hi. You can mark routes with :no-doc true
to dismiss them from the docs.
There is no support for multiple routes at the moment, but as this works with the sister project (#reitit), it could be backported to c-api.
See the docs: https://cljdoc.org/d/metosin/reitit/0.2.9/doc/ring/swagger-support#multiple-swagger-apis
@ikitommi Thanks! That's a super helpful answer.