initial commit
This commit is contained in:
17
backend/task.http
Normal file
17
backend/task.http
Normal file
@ -0,0 +1,17 @@
|
||||
### Create a task
|
||||
POST http://localhost:8080/api/tasks
|
||||
Content-Type: application/json
|
||||
|
||||
{
|
||||
"title": "Clean the kitchen",
|
||||
"points": 10,
|
||||
"status": "väntande",
|
||||
"recurrence": "weekly",
|
||||
"dueDate": "2026-03-01"
|
||||
}
|
||||
|
||||
### Retrieve all tasks
|
||||
GET http://localhost:8080/api/tasks
|
||||
|
||||
### Retrieve all tasks
|
||||
GET http://localhost:8080/api/health
|
||||
Reference in New Issue
Block a user