Bugzilla – Attachment 94548 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) Check whether patrons exists before deleting history
Bug-18795-follow-up-Check-whether-patrons-exists-b.patch (text/plain), 1.21 KB, created by
Joonas Kylmälä
on 2019-10-22 12:59:19 UTC
(
hide
)
Description:
Bug 18795: (follow-up) Check whether patrons exists before deleting history
Filename:
MIME Type:
Creator:
Joonas Kylmälä
Created:
2019-10-22 12:59:19 UTC
Size:
1.21 KB
patch
obsolete
>From 2663428674782871cdf70c44c4f1407a0c9567e0 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:39:35 +0000 >Subject: [PATCH] Bug 18795: (follow-up) Check whether patrons exists before > deleting history > >Running $patrons->anonymise_issue_history after checking patrons >exists is more logical even though $patrons->anonymise_issue_history() >can handle 0 patrons returned in the search. Also this way we don't >have to run anonymise_issue_history() code unless needed, thus making >the code finish faster. >--- > Koha/REST/V1/Checkouts.pm | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > >diff --git a/Koha/REST/V1/Checkouts.pm b/Koha/REST/V1/Checkouts.pm >index ba3c615a2a..887714d22c 100644 >--- a/Koha/REST/V1/Checkouts.pm >+++ b/Koha/REST/V1/Checkouts.pm >@@ -197,14 +197,14 @@ sub delete_history { > 'me.borrowernumber' => $patron_id > }); > >- $patrons->anonymise_issue_history; >- > unless ($patrons->count) { > return $c->render( status => 404, openapi => { > error => "Patron doesn't exist" > }); > } > >+ $patrons->anonymise_issue_history; >+ > return $c->render( status => 204, openapi => "" ); > } > >-- >2.17.1
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