|
Lines 1-7
Link Here
|
| 1 |
{ |
1 |
{ |
| 2 |
"/checkouts": { |
2 |
"/checkouts": { |
| 3 |
"get": { |
3 |
"get": { |
| 4 |
"x-mojo-to": "Checkout#list", |
4 |
"x-mojo-to": "Checkouts#list", |
| 5 |
"operationId": "listCheckouts", |
5 |
"operationId": "listCheckouts", |
| 6 |
"tags": ["patrons", "checkouts"], |
6 |
"tags": ["patrons", "checkouts"], |
| 7 |
"parameters": [{ |
7 |
"parameters": [{ |
|
Lines 35-41
Link Here
|
| 35 |
}, |
35 |
}, |
| 36 |
"/checkouts/{checkout_id}": { |
36 |
"/checkouts/{checkout_id}": { |
| 37 |
"get": { |
37 |
"get": { |
| 38 |
"x-mojo-to": "Checkout#get", |
38 |
"x-mojo-to": "Checkouts#get", |
| 39 |
"operationId": "getCheckout", |
39 |
"operationId": "getCheckout", |
| 40 |
"tags": ["patrons", "checkouts"], |
40 |
"tags": ["patrons", "checkouts"], |
| 41 |
"parameters": [{ |
41 |
"parameters": [{ |
|
Lines 65-71
Link Here
|
| 65 |
}, |
65 |
}, |
| 66 |
"/checkouts/{checkout_id}/renewal": { |
66 |
"/checkouts/{checkout_id}/renewal": { |
| 67 |
"post": { |
67 |
"post": { |
| 68 |
"x-mojo-to": "Checkout#renew", |
68 |
"x-mojo-to": "Checkouts#renew", |
| 69 |
"operationId": "renewCheckout", |
69 |
"operationId": "renewCheckout", |
| 70 |
"tags": ["patrons", "checkouts"], |
70 |
"tags": ["patrons", "checkouts"], |
| 71 |
"parameters": [{ |
71 |
"parameters": [{ |
| 72 |
- |
|
|