When showing a task in its detail view, we want to be able to leave comments. POST `/task/{id}/comment/create` with body `{"message":"..."}` <img width="909" height="476" alt="Image" src="https://github.com/user-attachments/assets/7677f5c4-ff93-4737-91df-5a126c11619c" /> The comment can be implemented as a modal (HTML `<dialog>`), as there is no use for a custom URL.
When showing a task in its detail view, we want to be able to leave comments.
POST
/task/{id}/comment/createwith body{"message":"..."}The comment can be implemented as a modal (HTML
<dialog>), as there is no use for a custom URL.