- Tasks are grouped into lists
ListControllerhas the following endpoints:GET /lists- get all listsGET /lists/{id}- get specific list by idGET /lists/{id}/tasks- get all task summaries for given listPOST /lists- create a new listPUT /lists/{id}/name- rename existing list (for now there's nothing more to update)DELETE /lists/{id}- delete specified list
TaskControllerhas the following endpoints:GET /tasks- get all tasks summaries like name, date, status (query params for filtering sorting and pagination)GET /tasks/{id}- get specified task detailsPOST /tasks- create a new task. In request body there should be specified which list(s) to save it toPATCH /tasks/{id}- update the task's status (only status)DELETE /tasks/{id}- delete given task
amezydlo/tasks
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|