API Routes - laurenchambers/DessertDash GitHub Wiki
Index
GET /
- populate all restaurants
Sessions
User authorization
GET /api/session
- get/restore current sessionPOST /api/session
- login user via credentialsDELETE /api/session
- logout user/clear session user
Users
POST /api/users
- signup/create new userGET /api/users/:id/sips
- get sips
Restaurants
GET /api/restaurants
- get all restaurantsGET /api/restaurants/:id
- get a specific restaurantGET /api/restaurants/genres
- get all restauants based on genre
Checkout
GET /api/checkout/:id
- get the cartPOST /api/checkout/
- create the cartPOST /api/checkout/:id
- edit your cartDELETE /api/checkout/:id
- remove item from cart