BoiseState / interfaith-donation

Donation app and website to manage donations for Interfaith Sanctuary.
GNU General Public License v2.0
4 stars 1 forks source link

Branch236 callout create bug #251

Closed amyfeiling closed 6 years ago

amyfeiling commented 6 years ago

This pull request has the ability to create a new callout, create a new calloutneed, and get all of the calloutneeds by a calloutId.

Create a new callout example: { "name": "Summer", "effectiveDate": 1523724900729, "active": true, "createdDate": 1523724900729, "descriptionMessage": "Summer Items" }

Create a new calloutneed example: { "calloutId": 2, "needId": 1, "active": true, "quantity": 100 } /calloutneeds/{calloutId} paramater: 2 returns a list of calloutneeds: [ { "id": 3, "calloutId": 2, "needId": 1, "active": true, "quantity": 100 }, { "id": 5, "calloutId": 2, "needId": 4, "active": true, "quantity": 50 }, { "id": 7, "calloutId": 2, "needId": 6, "active": true, "quantity": 75 } ]