a902efb83b
This patch adds an endpoint in thi api in /api/v1/clubs/{club_id}/holds whith the verb POST that maps to Koha::REST::V1::Clubs::Holds#add controller. Classes for club_holds and club_holds_to_patron_holds new tables where also added. To test: 1) Reach SUCCESS.3 test point of previous patch with club that has no enrollments 2) Click on "Place Hold" SUCCESS => an alert should appear that you cannot place hold on a club without patrons 3) Reach SUCCESS.3 test point of previous patch with club that has enrollments 4) Click on "Place Hold" SUCCESS => holds priority list should appear with holds for every patron in club 5) Repeat steps 3 and 4. SUCCESS => new holds should appear in different order 6) Sign off Sponsored-by: Southeast Kansas Library - SEKLS Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
89 lines
2.9 KiB
JSON
89 lines
2.9 KiB
JSON
{
|
|
"/oauth/token": {
|
|
"$ref": "paths/oauth.json#/~1oauth~1token"
|
|
},
|
|
"/acquisitions/vendors": {
|
|
"$ref": "paths/acquisitions_vendors.json#/~1acquisitions~1vendors"
|
|
},
|
|
"/acquisitions/vendors/{vendor_id}": {
|
|
"$ref": "paths/acquisitions_vendors.json#/~1acquisitions~1vendors~1{vendor_id}"
|
|
},
|
|
"/acquisitions/funds": {
|
|
"$ref": "paths/acquisitions_funds.json#/~1acquisitions~1funds"
|
|
},
|
|
"/checkouts": {
|
|
"$ref": "paths/checkouts.json#/~1checkouts"
|
|
},
|
|
"/checkouts/{checkout_id}": {
|
|
"$ref": "paths/checkouts.json#/~1checkouts~1{checkout_id}"
|
|
},
|
|
"/checkouts/{checkout_id}/renewal": {
|
|
"$ref": "paths/checkouts.json#/~1checkouts~1{checkout_id}~1renewal"
|
|
},
|
|
"/cities": {
|
|
"$ref": "paths/cities.json#/~1cities"
|
|
},
|
|
"/cities/{city_id}": {
|
|
"$ref": "paths/cities.json#/~1cities~1{city_id}"
|
|
},
|
|
"/biblios/{biblio_id}": {
|
|
"$ref": "paths/biblios.json#/~1biblios~1{biblio_id}"
|
|
},
|
|
"/clubs/{club_id}/holds": {
|
|
"$ref": "paths/clubs.json#/~1clubs~1{club_id}~1holds"
|
|
},
|
|
"/holds": {
|
|
"$ref": "paths/holds.json#/~1holds"
|
|
},
|
|
"/holds/{hold_id}": {
|
|
"$ref": "paths/holds.json#/~1holds~1{hold_id}"
|
|
},
|
|
"/holds/{hold_id}/priority": {
|
|
"$ref": "paths/holds.json#/~1holds~1{hold_id}~1priority"
|
|
},
|
|
"/holds/{hold_id}/suspension": {
|
|
"$ref": "paths/holds.json#/~1holds~1{hold_id}~1suspension"
|
|
},
|
|
"/libraries": {
|
|
"$ref": "paths/libraries.json#/~1libraries"
|
|
},
|
|
"/libraries/{library_id}": {
|
|
"$ref": "paths/libraries.json#/~1libraries~1{library_id}"
|
|
},
|
|
"/checkouts/{checkout_id}/allows_renewal": {
|
|
"$ref": "paths/checkouts.json#/~1checkouts~1{checkout_id}~1allows_renewal"
|
|
},
|
|
"/items/{item_id}": {
|
|
"$ref": "paths/items.json#/~1items~1{item_id}"
|
|
},
|
|
"/patrons": {
|
|
"$ref": "paths/patrons.json#/~1patrons"
|
|
},
|
|
"/patrons/{patron_id}": {
|
|
"$ref": "paths/patrons.json#/~1patrons~1{patron_id}"
|
|
},
|
|
"/patrons/{patron_id}/account": {
|
|
"$ref": "paths/patrons_account.json#/~1patrons~1{patron_id}~1account"
|
|
},
|
|
"/patrons/{patron_id}/account/credits": {
|
|
"$ref": "paths/patrons_account.json#/~1patrons~1{patron_id}~1account~1credits"
|
|
},
|
|
"/patrons/{patron_id}/password": {
|
|
"$ref": "paths/patrons_password.json#/~1patrons~1{patron_id}~1password"
|
|
},
|
|
"/illrequests": {
|
|
"$ref": "paths/illrequests.json#/~1illrequests"
|
|
},
|
|
"/rotas/{rota_id}/stages/{stage_id}/position": {
|
|
"$ref": "paths/rotas.json#/~1rotas~1{rota_id}~1stages~1{stage_id}~1position"
|
|
},
|
|
"/public/patrons/{patron_id}/password": {
|
|
"$ref": "paths/public_patrons.json#/~1public~1patrons~1{patron_id}~1password"
|
|
},
|
|
"/public/patrons/{patron_id}/guarantors/can_see_charges": {
|
|
"$ref": "paths/public_patrons.json#/~1public~1patrons~1{patron_id}~1guarantors~1can_see_charges"
|
|
},
|
|
"/public/patrons/{patron_id}/guarantors/can_see_checkouts": {
|
|
"$ref": "paths/public_patrons.json#/~1public~1patrons~1{patron_id}~1guarantors~1can_see_checkouts"
|
|
}
|
|
}
|