https://github.com/bastidanicolas/ingredient-list-api
Springboot CRUD api of list of engredients with celiac filtering
https://github.com/bastidanicolas/ingredient-list-api
Last synced: 6 months ago
JSON representation
Springboot CRUD api of list of engredients with celiac filtering
- Host: GitHub
- URL: https://github.com/bastidanicolas/ingredient-list-api
- Owner: BastidaNicolas
- Created: 2022-10-03T13:37:48.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2022-10-04T16:05:36.000Z (about 3 years ago)
- Last Synced: 2024-10-12T13:10:40.181Z (12 months ago)
- Language: Java
- Homepage:
- Size: 61.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ingredient-list-api
Springboot CRUD api of list of engredients with celiac filtering# Task
### API para repostería
Una repostera posee una gran cantidad de clientes celíacos, para quienes realiza diferentes viandas semanales. Para poder mejorar su trabajo, necesita del desarrollo de una API que le permita cargar a una lista y consultar en la misma los diferentes ingredientes que no contienen gluten.
### Calls
##### Get all condiments
/condiments
##### Get a condiment by id
/condiments/{id}
##### Get only celiac or non celiac condiments
/condiments/celiac (add a boolean "celiac" to params)
##### Add condiment to list
/condiments/add (send condiment body)
##### Edit a condiment
/condiment/edit/{id} (add params that are in the condiment model)
##### Delete a condiment
/condiment/remove/{id}
# Status
:heavy_check_mark: Completed