feat: added endpoint to update list item title only

This commit is contained in:
2026-09-04 10:11:32 +02:00
parent ad8a5e3bab
commit 4cb03c6712
5 changed files with 86 additions and 4 deletions
+4
View File
@@ -25,6 +25,10 @@ type UpdateListItemPayload struct {
IsCompleted bool `json:"is_completed"`
}
type SetListItemTitlePayload struct {
Title string `json:"title"`
}
type SetListItemCompletedPayload struct {
IsCompleted bool `json:"is_completed"`
}