- Tasks are grouped into lists
ListController
has 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
TaskController
has 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
-
Notifications
You must be signed in to change notification settings - Fork 0
amezydlo/tasks
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
No description, website, or topics provided.
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published