Bugzilla – Attachment 95465 Details for
Bug 18795
REST API: DELETE (anonymize) checkout history
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 18795: (follow-up) Unify error message to be same across codebase
Bug-18795-follow-up-Unify-error-message-to-be-same.patch (text/plain), 1.42 KB, created by
Bouzid Fergani
on 2019-11-15 20:34:45 UTC
(
hide
)
Description:
Bug 18795: (follow-up) Unify error message to be same across codebase
Filename:
MIME Type:
Creator:
Bouzid Fergani
Created:
2019-11-15 20:34:45 UTC
Size:
1.42 KB
patch
obsolete
>From 3f7b9d3a94efe5949346e99fa4fec276c7d08396 Mon Sep 17 00:00:00 2001 >From: =?UTF-8?q?Joonas=20Kylm=C3=A4l=C3=A4?= <joonas.kylmala@helsinki.fi> >Date: Tue, 22 Oct 2019 12:48:17 +0000 >Subject: [PATCH] Bug 18795: (follow-up) Unify error message to be same across > codebase > >In Koha/REST/V1/Patrons.pm the error message for not finding patron is >"Patron not found" so let's use the same here. > >Signed-off-by: Bouzid Fergani <bouzid.fergani@inlibro.com> >--- > Koha/REST/V1/Checkouts.pm | 2 +- > t/db_dependent/api/v1/checkouts.t | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > >diff --git a/Koha/REST/V1/Checkouts.pm b/Koha/REST/V1/Checkouts.pm >index 17614a6..84ed56d 100644 >--- a/Koha/REST/V1/Checkouts.pm >+++ b/Koha/REST/V1/Checkouts.pm >@@ -199,7 +199,7 @@ sub delete_history { > > unless ($patrons->count) { > return $c->render( status => 404, openapi => { >- error => "Patron doesn't exist" >+ error => "Patron not found" > }); > } > >diff --git a/t/db_dependent/api/v1/checkouts.t b/t/db_dependent/api/v1/checkouts.t >index a1df3a6..77cb313 100644 >--- a/t/db_dependent/api/v1/checkouts.t >+++ b/t/db_dependent/api/v1/checkouts.t >@@ -232,4 +232,4 @@ $patron_to_delete->delete; > > $t->delete_ok( "//$userid:$password@/api/v1/checkouts/history?patron_id=$patron_to_delete_id") > ->status_is(404) >- ->json_is({error => "Patron doesn't exist"}); >+ ->json_is({error => "Patron not found"}); >-- >2.7.4
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 18795
:
64255
|
94533
|
94547
|
94548
|
94549
|
94552
|
94555
|
95246
|
95247
|
95248
|
95265
|
95266
|
95267
|
95463
|
95464
| 95465