From 54719c783d0d50c6ab67e7517d091e4255cd43e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20L=C3=B3pez?= <46503462+davelopez@users.noreply.github.com> Date: Fri, 8 Jan 2021 12:23:28 +0100 Subject: [PATCH] Show OpenAPI documentation for API tags --- lib/galaxy/webapps/galaxy/fast_app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/galaxy/webapps/galaxy/fast_app.py b/lib/galaxy/webapps/galaxy/fast_app.py index 02bdeb854135..64ad1e293296 100644 --- a/lib/galaxy/webapps/galaxy/fast_app.py +++ b/lib/galaxy/webapps/galaxy/fast_app.py @@ -42,7 +42,7 @@ async def message_exception_middleware(request: Request, exc: MessageException) def initialize_fast_app(gx_app): - app = FastAPI() + app = FastAPI(openapi_tags=api_tags_metadata) add_exception_handler(app) wsgi_handler = WSGIMiddleware(gx_app)