[Koha-bugs] [Bug 34333] Add cancellation request information embed option to the holds endpoint

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Wed Dec 20 09:07:06 CET 2023


https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34333

Jonathan Druart <jonathan.druart+koha at gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jonathan.druart+koha at gmail.
                   |                            |com

--- Comment #12 from Jonathan Druart <jonathan.druart+koha at gmail.com> ---
Tomas, yesterday's weirdness is coming from:

+      - name: x-koha-embed
+        in: header
+        required: false
+        description: Embed list sent as a request header
+        type: array
+        items:
+          type: string
+          enum:
+            - cancellation_requested
+          collectionFormat: csv

collectionFormat is an attribute of the header, no the items, it should have
been:

+      - name: x-koha-embed
+        in: header
+        required: false
+        description: Embed list sent as a request header
+        type: array
+        items:
+          type: string
+          enum:
+            - cancellation_requested
+        collectionFormat: csv

-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list