From 500f2b2ad4506929c2c4a11c679f240315944b2e Mon Sep 17 00:00:00 2001 From: William Hayes Date: Fri, 12 Apr 2019 03:49:32 -0400 Subject: [PATCH] :sparkles: Add deeplinking to Swagger UI (#148) Update the Swagger UI docs to deep link to path operations to share them more easily. --- fastapi/openapi/docs.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fastapi/openapi/docs.py b/fastapi/openapi/docs.py index 5d10aa59a..9820525e2 100644 --- a/fastapi/openapi/docs.py +++ b/fastapi/openapi/docs.py @@ -31,7 +31,8 @@ def get_swagger_ui_html(*, openapi_url: str, title: str) -> HTMLResponse: SwaggerUIBundle.presets.apis, SwaggerUIBundle.SwaggerUIStandalonePreset ], - layout: "BaseLayout" + layout: "BaseLayout", + deepLinking: true })