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

(-)a/Koha/REST/V1/Clubs/Holds.pm (-4 / +3 lines)
Lines 81-87 sub add { Link Here
81
            unless ($item) {
81
            unless ($item) {
82
                return $c->render(
82
                return $c->render(
83
                    status  => 404,
83
                    status  => 404,
84
                    openapi => { error => "item_id not found." }
84
                    openapi => { error => "Item not found" }
85
                );
85
                );
86
            }
86
            }
87
            else {
87
            else {
Lines 100-107 sub add { Link Here
100
100
101
        unless ($biblio) {
101
        unless ($biblio) {
102
            return $c->render(
102
            return $c->render(
103
                status  => 400,
103
                status  => 404,
104
                openapi => "Biblio not found."
104
                openapi => { error => "Biblio not found" }
105
            );
105
            );
106
        }
106
        }
107
107
108
- 

Return to bug 27593