From ed87efd1e92a75fa10f91dbceba3f08d12b6a504 Mon Sep 17 00:00:00 2001 From: Emmi Takkinen Date: Mon, 22 Jul 2024 08:38:33 +0300 Subject: [PATCH] Bug 37032: Fix typo in holds.yaml There is a typo in holds.yaml which prevents fetching item as embeded object. Option "collectionFormat" should be under "x-koha-embed", not "items" array. To test prove t/db_dependent/api/v1/holds.t. Sponsored-by: Koha-Suomi Oy --- api/v1/swagger/paths/holds.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/v1/swagger/paths/holds.yaml b/api/v1/swagger/paths/holds.yaml index 6458ff72ef..b715023858 100644 --- a/api/v1/swagger/paths/holds.yaml +++ b/api/v1/swagger/paths/holds.yaml @@ -104,7 +104,7 @@ - cancellation_requested - biblio - pickup_library - collectionFormat: csv + collectionFormat: csv produces: - application/json responses: -- 2.34.1