Added validation for structs (#19)
This commit is contained in:
parent
373bbd2202
commit
0c544fe355
299 changed files with 135 additions and 64237 deletions
|
|
@ -1,11 +1,11 @@
|
|||
# Get all lists
|
||||
GET http://localhost:8080/api/v1/lists?page=0
|
||||
GET http://localhost:8080/api/v1/lists
|
||||
Authorization: Bearer {{auth_token}}
|
||||
|
||||
###
|
||||
|
||||
# Get one list
|
||||
GET http://localhost:8080/api/v1/lists/2
|
||||
GET http://localhost:8080/api/v1/lists/1
|
||||
Authorization: Bearer {{auth_token}}
|
||||
|
||||
###
|
||||
|
|
@ -15,7 +15,10 @@ PUT http://localhost:8080/api/v1/namespaces/1/lists
|
|||
Authorization: Bearer {{auth_token}}
|
||||
Content-Type: application/json
|
||||
|
||||
{}
|
||||
{
|
||||
"title": "sc",
|
||||
"created": 0
|
||||
}
|
||||
|
||||
###
|
||||
|
||||
|
|
|
|||
Reference in a new issue