Is it possible to expose two Swagger UIs, let's say public
and internal
with NSwag?
I've tried with .AddSwaggerDocument(ConfigurePublic);
+ .AddSwaggerDocument(ConfigureInternal);
but this generates two versions that are selectable from a single UI doc.
The API over time will have multiple versions (e.g. v1, v2) each with public and internal 'pools' of methods.
In the example of two functional versions (v1, v2) I thought of having four api versions v1, v2, v1-internal, and v2-internal, but I don't know how to create two UI paths, /docs
showing v1 and v2 and /docs-internal
showing v1-internal, and v2-internal. (Ideally I'd like to have only two versions and just mark methods as public/internal)
That the internal document is technically accessible to the public if they know the url is not a problem, it just cannot be visible in the pubic version of the Swagger UI.