Make sure task timestamps are updated when using bulk move feature
This commit is contained in:
parent
1bed8e1fbb
commit
653128cdb4
|
|
@ -36,7 +36,9 @@ class TaskPositionModel extends Base
|
|||
->update([
|
||||
'swimlane_id' => $swimlane_id,
|
||||
'column_id' => $column_id,
|
||||
'position' => $position
|
||||
'position' => $position,
|
||||
'date_moved' => time(),
|
||||
'date_modification' => time(),
|
||||
]);
|
||||
|
||||
$this->db->closeTransaction();
|
||||
|
|
|
|||
Loading…
Reference in New Issue