Browse Source
GET /holds?borrowernumber=X (list) POST /holds (create) PUT /holds/{reserve_id} (update) DELETE /holds/{reserve_id} (delete) Unit tests in t/db_dependent/api/v1/holds.t Signed-off-by: Jesse Weaver <jweaver@bywatersolutions.com> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>16.05.x
7 changed files with 48 additions and 48 deletions
@ -1,4 +1,4 @@ |
|||
package Koha::REST::V1::Reserve; |
|||
package Koha::REST::V1::Hold; |
|||
|
|||
# This file is part of Koha. |
|||
# |
@ -0,0 +1,4 @@ |
|||
{ |
|||
"type": "array", |
|||
"items": { "$ref": "hold.json" } |
|||
} |
@ -1,6 +1,6 @@ |
|||
{ |
|||
"patron": { "$ref": "patron.json" }, |
|||
"reserves": { "$ref": "reserves.json" }, |
|||
"reserve": { "$ref": "reserve.json" }, |
|||
"holds": { "$ref": "holds.json" }, |
|||
"hold": { "$ref": "hold.json" }, |
|||
"error": { "$ref": "error.json" } |
|||
} |
|||
|
@ -1,4 +0,0 @@ |
|||
{ |
|||
"type": "array", |
|||
"items": { "$ref": "reserve.json" } |
|||
} |
Loading…
Reference in new issue