From ac75020c118e28216b685e72d83e43a0617960fc Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Mon, 29 Nov 2021 15:30:51 -0300 Subject: [PATCH] Bug 29593: Fix wrong tag in GET /public/libraries spec This makes the documentation look untidy. To test: 1. Open the api/v1/swagger/paths/libraries.json file with your favourite editor. => FAIL: All routes, but this one, have tags: ['library'] 2. Apply this patch => SUCCESS: All routes have tags: ['library'] 3. Sign off :-D Signed-off-by: Tomas Cohen Arazi --- api/v1/swagger/paths/libraries.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/v1/swagger/paths/libraries.json b/api/v1/swagger/paths/libraries.json index 81ccfaebf2..59f885ebc3 100644 --- a/api/v1/swagger/paths/libraries.json +++ b/api/v1/swagger/paths/libraries.json @@ -496,7 +496,7 @@ "x-mojo-to": "Libraries#get", "operationId": "getLibraryPublic", "tags": [ - "libraries" + "library" ], "summary": "Get library (public)", "parameters": [ -- 2.32.0