We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
Swagger支持分组,隐藏API
Swagger相关配置结构变更,添加多个Endpoints支持,添加RoutePrefix支持 旧的配置:
"Swagger": { "Title": "OSharp API", "Version": 1, "Url": "/swagger/v1/swagger.json", "MiniProfiler": true, "Enabled": true }
新的配置:
"Swagger": { "Endpoints": [ { "Title": "框架API", "Version": "v1", "Url": "/swagger/v1/swagger.json" }, { "Title": "业务API", "Version": "buss", "Url": "/swagger/buss/swagger.json" } ], "RoutePrefix": "swagger", "MiniProfiler": true, "Enabled": true }
The text was updated successfully, but these errors were encountered:
🆕 (swagger) Swagger支持分组,隐藏API,路由前缀配置#147
3bdb705
No branches or pull requests
您的功能请求与现有问题有关吗?请描述
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
Swagger支持分组,隐藏API
受到的影响
Swagger相关配置结构变更,添加多个Endpoints支持,添加RoutePrefix支持
旧的配置:
新的配置:
The text was updated successfully, but these errors were encountered: