1
0

Added a route to get all tasks sorted desc by their due dates (#14)

This commit is contained in:
konrad
2018-11-02 16:59:49 +00:00
committed by Gitea
parent 14207a0fa8
commit 31a4a1dd00
6 changed files with 99 additions and 24 deletions

View File

@ -4,7 +4,7 @@ Content-Type: application/json
{
"username": "user",
"password": "1234"
"password": "12345"
}
> {% client.global.set("auth_token", response.body.token); %}

View File

@ -98,4 +98,10 @@ Content-Type: application/json
DELETE http://localhost:8080/api/v1/lists/28/users/3
Authorization: Bearer {{auth_token}}
###
# Get all pending tasks
GET http://localhost:8080/api/v1/tasks
Authorization: Bearer {{auth_token}}
###