Whether the version parameter of FastEndpoints.Swagger.DocumentProcessor can provide scope support
See original GitHub issue //Here minEndpointVersion support !?
services.AddSwaggerDoc(maxEndpointVersion: 0, settings: s =>
{
} );
public DocumentProcessor(int maxEndpointVersion)
{
maxEpVer = maxEndpointVersion;
}
Whether the version parameter of FastEndpoints.Swagger.DocumentProcessor can provide scope support, for example sometimes I need to limit the version of a document to between 2-3, but currently only maxEndpointVersion can be configured
Issue Analytics
- State:
- Created a year ago
- Comments:5 (5 by maintainers)
Top Results From Across the Web
Swagger Support
Swagger is a first class citizen in the land of FastEndpoints enabling API visualization with minimal effort.
Read more >How to stop default api vesion showing up in swagger ...
With NSwug we can use a DocumentProcessors which can be used to filter out the unwanted swagger paths. I have used below nuget...
Read more >Integration Api version with route parameter and swagger
Hi, I want to integrate swagger with API versioning in route parameter minimal API, something like: api/v{version:apiVersion}/catalogs.
Read more >Implement authorization for Swagger in ASP.NET Core 6
In this article I'll discuss how we can implement basic authentication in Swagger. To work with the code examples provided in this article,...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
#244
Yes, that’s the premise !