View | Details | Raw Unified | Return to bug 26297
Collapse All | Expand All

(-)a/Koha/REST/V1/Patrons/Categories.pm (-2 / +1 lines)
Lines 39-45 sub list { Link Here
39
    my $c = shift->openapi->valid_input or return;
39
    my $c = shift->openapi->valid_input or return;
40
40
41
    return try {
41
    return try {
42
        my $patron_categories_rs = Koha::Patron::Categories->search;
42
        my $patron_categories_rs = Koha::Patron::Categories->search_with_library_limits;
43
        my $categories           = $c->objects->search($patron_categories_rs);
43
        my $categories           = $c->objects->search($patron_categories_rs);
44
44
45
        return $c->render(
45
        return $c->render(
46
- 

Return to bug 26297