Bugzilla – Attachment 114064 Details for
Bug 27117
Staff without modify_holds_priority permission can't update hold pick-up from biblio
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 27117 : Only place_holds permission is needed to adjust pickup locations
Bug-27117--Only-placeholds-permission-is-needed-to.patch (text/plain), 2.24 KB, created by
Jonathan Druart
on 2020-12-01 10:54:52 UTC
(
hide
)
Description:
Bug 27117 : Only place_holds permission is needed to adjust pickup locations
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2020-12-01 10:54:52 UTC
Size:
2.24 KB
patch
obsolete
>From ce892a0811e235df5c68345d45659ac5829ceae0 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Tue, 1 Dec 2020 11:44:04 +0100 >Subject: [PATCH] Bug 27117 : Only place_holds permission is needed to adjust > pickup locations > >The GET /pickup_locations route is requesting the whole reserveforothers >permission whereas only the subpermission place_holds is needed. > >Test plan: >0. Don't apply this patch >1. Set the subpermission place_holds but modify_holds_priority >2. Edit a hold and click the pickup library dropdown list >3. You get a JS alert and log displays > GET /api/v1/app.pl/api/v1/holds/5/pickup_locations > 403 Forbidden >4. Apply this patch >5. Reload the page, click the dropdown list, modify the pickup location >and save >=> Success! >--- > api/v1/swagger/paths/holds.json | 2 +- > t/db_dependent/api/v1/holds.t | 12 +++++++++++- > 2 files changed, 12 insertions(+), 2 deletions(-) > >diff --git a/api/v1/swagger/paths/holds.json b/api/v1/swagger/paths/holds.json >index 3792985c8c..386b4a9470 100644 >--- a/api/v1/swagger/paths/holds.json >+++ b/api/v1/swagger/paths/holds.json >@@ -672,7 +672,7 @@ > }, > "x-koha-authorization": { > "permissions": { >- "reserveforothers": "1" >+ "reserveforothers": "place_holds" > } > } > } >diff --git a/t/db_dependent/api/v1/holds.t b/t/db_dependent/api/v1/holds.t >index 585e19a8a5..f9a4819d0c 100755 >--- a/t/db_dependent/api/v1/holds.t >+++ b/t/db_dependent/api/v1/holds.t >@@ -686,11 +686,21 @@ subtest 'pickup_locations() tests' => sub { > my $patron = $builder->build_object( > { > class => 'Koha::Patrons', >- value => { userid => 'tomasito', flags => 1 } >+ value => { userid => 'tomasito', flags => 0 } > } > ); > $patron->set_password( { password => $password, skip_validation => 1 } ); > my $userid = $patron->userid; >+ $builder->build( >+ { >+ source => 'UserPermission', >+ value => { >+ borrowernumber => $patron->borrowernumber, >+ module_bit => 6, >+ code => 'place_holds', >+ }, >+ } >+ ); > > my $item_class = Test::MockModule->new('Koha::Item'); > $item_class->mock( >-- >2.20.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 27117
:
114060
|
114063
|
114064
|
114310
|
114451