feat: add DateMoved timestamp field to Task struct

Adds the date_moved field to capture when a task was last moved
between columns or swimlanes in Kanboard.
This commit is contained in:
Oliver Jakoubek 2026-01-28 12:09:06 +01:00
commit bc478b44e0
2 changed files with 2 additions and 0 deletions

View file

@ -165,6 +165,7 @@ type Task struct {
DateCompleted Timestamp `json:"date_completed"`
DateStarted Timestamp `json:"date_started"`
DateDue Timestamp `json:"date_due"`
DateMoved Timestamp `json:"date_moved"`
ColorID string `json:"color_id"`
ProjectID StringInt `json:"project_id"`
ColumnID StringInt `json:"column_id"`