Project

General

Profile

Bug #107

Updated by Sam Pearson 21 days ago

Creating a task with this request 

 ``` 
 { 
   "title": "Task with description", 
   "description": "This is a detailed description of the task" 
 } 
 ``` 

 generates this task/response 

 ``` 
 { 
   "completed": false, 
   "completed_at": null, 
   "created_at": "2026-01-01T17:31:35.253612", 
   "description": null, 
   "id": 31, 
   "principles": [], 
   "project_id": null, 
   "tags": [], 
   "title": "Task with description", 
   "updated_at": "2026-01-01T17:31:35.253617", 
   "user_id": 2 
 } 
 ``` 

 Note the missing description

Back