Make sure task timestamps are updated when using bulk move feature

This commit is contained in:
Frédéric Guillot 2018-06-05 10:07:40 -07:00
parent 1bed8e1fbb
commit 653128cdb4
1 changed files with 3 additions and 1 deletions

View File

@ -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();