Front End Routes For Git_r_done - ericgeagan/git_r_done GitHub Wiki
#User-facing routes
/login
This page displays a log in form.
* GET /login
* POST /login
/signup
This page displays a sign up form.
* GET /signup
* POST /signup
/ (HOME)(ROOT)
This page displays ...
* GET /
/lists
This page displays a form with which a logged in user can create lists and view lists.
* POST /lists
* GET /lists
/lists/:id
This page displays individual lists and their associated tasks for a logged in user. The user can add tasks to the list here, delete tasks from a list, edit tasks from a list. They can also edit or delete the list.
* GET /lists/:id
* DELETE /lists/:id
* POST /lists/:id/tasks
* GET /lists/:id/tasks
* PUT /lists/:id
* PUT /lists/:id/tasks/:id || /tasks/:id
* DELETE /lists/:id/tasks/:id || /tasks/:id