Back End Routes - shaieleigh/stackOverFlow GitHub Wiki
Back end routes
Get User: GET /api/session
Login: PUT /api/session
Get user: GET /api/users/:id
Sign-up: POST /api/users
Logout: DELETE /api/session
List Questions: GET /api/questions
Add Question: POST /api/questions
Add Answer: POST /api/questions/:id/answers
Add Vote: PUT /api/questions/:id/votes
Delete Question: DELETE /api/question/id