Bugzilla – Attachment 122279 Details for
Bug 28613
Several objects.search-based routes missing parameters
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 28613: Add missing parameters to objects.search-based routes
Bug-28613-Add-missing-parameters-to-objectssearch-.patch (text/plain), 5.00 KB, created by
Tomás Cohen Arazi (tcohen)
on 2021-06-22 11:57:51 UTC
(
hide
)
Description:
Bug 28613: Add missing parameters to objects.search-based routes
Filename:
MIME Type:
Creator:
Tomás Cohen Arazi (tcohen)
Created:
2021-06-22 11:57:51 UTC
Size:
5.00 KB
patch
obsolete
>From be60b2ec1103258804c04779be90f077e5429afb Mon Sep 17 00:00:00 2001 >From: Tomas Cohen Arazi <tomascohen@theke.io> >Date: Tue, 22 Jun 2021 08:52:56 -0300 >Subject: [PATCH] Bug 28613: Add missing parameters to objects.search-based > routes > >The objects.search helper provides convenient ways to paginate and a 'q' filter parameter to build complex queries on this Koha::Objects-based routes. > >Some routes were created prior to this feature getting introduced. We need to adjust the parameters for all existing objects.search-based routes. > >This patch adds that. > >The only GET (as in list) routes that would still be missing the >parameters are those about ILL, that are not objects.search based, and >probably need to be rewritten. > >https://bugs.koha-community.org/show_bug.cgi?id=28480 >--- > api/v1/swagger/paths/acquisitions_funds.json | 12 +++++++++-- > .../swagger/paths/acquisitions_vendors.json | 6 ++++++ > .../swagger/paths/advancededitormacros.json | 21 +++++++++++++++++++ > api/v1/swagger/paths/checkouts.json | 6 ++++++ > .../swagger/paths/import_batch_profiles.json | 9 ++++++++ > api/v1/swagger/paths/items.json | 9 ++++++++ > 6 files changed, 61 insertions(+), 2 deletions(-) > >diff --git a/api/v1/swagger/paths/acquisitions_funds.json b/api/v1/swagger/paths/acquisitions_funds.json >index 299a8776db..22e01660a7 100644 >--- a/api/v1/swagger/paths/acquisitions_funds.json >+++ b/api/v1/swagger/paths/acquisitions_funds.json >@@ -33,8 +33,16 @@ > }, > { > "$ref": "../parameters.json#/per_page" >- } >- ], >+ }, >+ { >+ "$ref": "../parameters.json#/q_param" >+ }, >+ { >+ "$ref": "../parameters.json#/q_body" >+ }, >+ { >+ "$ref": "../parameters.json#/q_header" >+ }], > "responses": { > "200": { > "description": "A list of funds", >diff --git a/api/v1/swagger/paths/acquisitions_vendors.json b/api/v1/swagger/paths/acquisitions_vendors.json >index 32f67097bb..995e787957 100644 >--- a/api/v1/swagger/paths/acquisitions_vendors.json >+++ b/api/v1/swagger/paths/acquisitions_vendors.json >@@ -28,6 +28,12 @@ > "$ref": "../parameters.json#/page" > }, { > "$ref": "../parameters.json#/per_page" >+ }, { >+ "$ref": "../parameters.json#/q_param" >+ }, { >+ "$ref": "../parameters.json#/q_body" >+ }, { >+ "$ref": "../parameters.json#/q_header" > }], > "responses": { > "200": { >diff --git a/api/v1/swagger/paths/advancededitormacros.json b/api/v1/swagger/paths/advancededitormacros.json >index fbc589988a..d28e1c9cc9 100644 >--- a/api/v1/swagger/paths/advancededitormacros.json >+++ b/api/v1/swagger/paths/advancededitormacros.json >@@ -36,6 +36,27 @@ > "description": "Search on shared macros", > "required": false, > "type": "string" >+ }, >+ { >+ "$ref": "../parameters.json#/match" >+ }, >+ { >+ "$ref": "../parameters.json#/order_by" >+ }, >+ { >+ "$ref": "../parameters.json#/page" >+ }, >+ { >+ "$ref": "../parameters.json#/per_page" >+ }, >+ { >+ "$ref": "../parameters.json#/q_param" >+ }, >+ { >+ "$ref": "../parameters.json#/q_body" >+ }, >+ { >+ "$ref": "../parameters.json#/q_header" > } > ], > "responses": { >diff --git a/api/v1/swagger/paths/checkouts.json b/api/v1/swagger/paths/checkouts.json >index e79a5db01d..f3f36e53c3 100644 >--- a/api/v1/swagger/paths/checkouts.json >+++ b/api/v1/swagger/paths/checkouts.json >@@ -15,6 +15,12 @@ > "$ref": "../parameters.json#/match" > }, { > "$ref": "../parameters.json#/order_by" >+ }, { >+ "$ref": "../parameters.json#/q_param" >+ }, { >+ "$ref": "../parameters.json#/q_body" >+ }, { >+ "$ref": "../parameters.json#/q_header" > },{ > "name": "checked_in", > "in": "query", >diff --git a/api/v1/swagger/paths/import_batch_profiles.json b/api/v1/swagger/paths/import_batch_profiles.json >index 9c6e1c5ba9..6363e9adbe 100644 >--- a/api/v1/swagger/paths/import_batch_profiles.json >+++ b/api/v1/swagger/paths/import_batch_profiles.json >@@ -26,6 +26,15 @@ > }, > { > "$ref": "../parameters.json#/per_page" >+ }, >+ { >+ "$ref": "../parameters.json#/q_param" >+ }, >+ { >+ "$ref": "../parameters.json#/q_body" >+ }, >+ { >+ "$ref": "../parameters.json#/q_header" > } > ], > "consumes": [ >diff --git a/api/v1/swagger/paths/items.json b/api/v1/swagger/paths/items.json >index 0c9c7fbdef..eea5348909 100644 >--- a/api/v1/swagger/paths/items.json >+++ b/api/v1/swagger/paths/items.json >@@ -26,6 +26,15 @@ > }, > { > "$ref": "../parameters.json#/per_page" >+ }, >+ { >+ "$ref": "../parameters.json#/q_param" >+ }, >+ { >+ "$ref": "../parameters.json#/q_body" >+ }, >+ { >+ "$ref": "../parameters.json#/q_header" > } > ], > "consumes": [ >-- >2.32.0
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 28613
:
122279
|
127014