-
Notifications
You must be signed in to change notification settings - Fork 0
Backend Routes
andy-h-2016 edited this page Apr 2, 2021
·
3 revisions
-
GET /
StaticPagesController#root
-
POST /api/users
- sign up
-
POST /api/session
- log in -
DELETE /api/session
- log out
-
GET api/lists
- return all lists to populate nav bar -
GET api/lists/:id
- return all tasks on the list. -
POST api/lists
- create a new list -
DELETE api/lists/:id
- delete a list -
PATCH api/lists/:id
- edit a list
-
GET api/tasks/:id
- return details for a given task -
POST api/tasks
- create a new task -
DELETE api/tasks/:id
- delete a task -
PATCH api/tasks/:id
- edit a task -
GET api/tasks/search
- return list of tasks that match search query