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:
parent
5fd38721b5
commit
bc478b44e0
2 changed files with 2 additions and 0 deletions
1
types.go
1
types.go
|
|
@ -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"`
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue