mirror of
https://github.com/Websoft9/websoft9.git
synced 2024-11-26 09:30:27 +00:00
Update main.py
This commit is contained in:
parent
eba5b3ed5f
commit
1b4c378b8a
1 changed files with 3 additions and 3 deletions
|
@ -30,7 +30,7 @@ def get_app():
|
|||
app.include_router(api_router_v1.get_api())
|
||||
return app
|
||||
|
||||
@app.get("/docs", include_in_schema=False)
|
||||
@app.get("/docs", include_in_schema=True)
|
||||
async def custom_swagger_ui_html():
|
||||
return get_swagger_ui_html(
|
||||
openapi_url=app.openapi_url,
|
||||
|
@ -40,11 +40,11 @@ async def custom_swagger_ui_html():
|
|||
swagger_css_url="/static/swagger-ui/swagger-ui.css",
|
||||
)
|
||||
|
||||
@app.get(app.swagger_ui_oauth2_redirect_url, include_in_schema=False)
|
||||
@app.get(app.swagger_ui_oauth2_redirect_url, include_in_schema=True)
|
||||
async def swagger_ui_redirect():
|
||||
return get_swagger_ui_oauth2_redirect_html()
|
||||
|
||||
@app.get("/redoc", include_in_schema=False)
|
||||
@app.get("/redoc", include_in_schema=True)
|
||||
async def redoc_html():
|
||||
return get_redoc_html(
|
||||
openapi_url=app.openapi_url,
|
||||
|
|
Loading…
Reference in a new issue