const projectGroup = { memberOne: 'Peter', memberTwo: 'Derek', MemberThree: 'Kyle', MemberFour: 'Chen', };
This is an Coffee drink API that allows users to see all data, specific data filter by id or brew methods. Additionally, since it allows users to create their own accounts, logged in users can add their favorite drinks to this API, as well as updating and deleting.
https://warm-gorge-13979.herokuapp.com
- Authentication (User Signup) --- https://warm-gorge-13979.herokuapp.com/api/v1/auth/signup
- Authentication (User Login) --- https://warm-gorge-13979.herokuapp.com/api/v1/auth/login
- Get All Drinks --- https://warm-gorge-13979.herokuapp.com/api/v1/drinks
- Get a drink by id --- https://warm-gorge-13979.herokuapp.com/api/v1/drinks/1
- Get a type of drinks by brew method --- https://warm-gorge-13979.herokuapp.com/api/v1/drinks?type=drip
- Add a favorite drink --- https://warm-gorge-13979.herokuapp.com/api/v1/drinks
- Logged user get their favorite drinks --- https://warm-gorge-13979.herokuapp.com/api/v1/auth/favorites
- Logged user add their favorite drink --- https://warm-gorge-13979.herokuapp.com/api/v1/auth/favorites
- Logged user update their favorite drink --- https://warm-gorge-13979.herokuapp.com/api/v1/auth/drinks/41
- Logged user delete their favorite drink --- https://warm-gorge-13979.herokuapp.com/api/v1/auth/drinks/41