]> git.koha-community.org Git - koha.git/commit
Bug 29508: Make GET /patrons/:patron_id use Koha::Patrons->search_limited
authorTomas Cohen Arazi <tomascohen@theke.io>
Wed, 17 Nov 2021 19:36:11 +0000 (16:36 -0300)
committerAndrew Fuerste-Henry <andrew@bywatersolutions.com>
Tue, 11 Jan 2022 22:02:31 +0000 (22:02 +0000)
commit9c63acbe0a585a8cbb354c4b88ee4056f194fcf5
tree5a5ced2de925b0413b2eb2b0f2f9456018526dcb
parent45a987a61ca3b156512a503043ce02ff882a9a20
Bug 29508: Make GET /patrons/:patron_id use Koha::Patrons->search_limited

This patch makes the route return 404 if the user is not allowed to see
the requested patron information.

To test:
1. Apply the regression tests
2. Run:
   $ kshell
  k$ prove t/db_dependent/api/v1/patrons.t
=> FAIL: The code doesn't respect limits
3. Apply this patch
4. Repeat 2
=> SUCCESS: Tests pass!
5. Sign off :-D

Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
Signed-off-by: Fridolin Somers <fridolin.somers@biblibre.com>
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
(cherry picked from commit 5ee42b6b6031472dc6637d1f22b53815ecb96121)

Signed-off-by: Andrew Fuerste-Henry <andrew@bywatersolutions.com>
Koha/REST/V1/Patrons.pm