summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorOlivier Maridat <olivier.maridat@trialog.com>2018-02-28 14:03:25 +0100
committerFrédéric Guillot <fred@kanboard.net>2018-02-28 10:47:20 -0800
commitdfa263e670ad5bf06753b52d85679290eac2ef79 (patch)
treecb5fc3aff7d15bb43e835c41ff4e9c65bc4b4c2f /app
parent506b75dd3661a0ef09415ba5d9ca4c1244ecdb69 (diff)
Add started, due and completed dates to TaskLinkModel::getAll
Diffstat (limited to 'app')
-rw-r--r--app/Model/TaskLinkModel.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/app/Model/TaskLinkModel.php b/app/Model/TaskLinkModel.php
index e8d3c5df..116e043f 100644
--- a/app/Model/TaskLinkModel.php
+++ b/app/Model/TaskLinkModel.php
@@ -106,6 +106,9 @@ class TaskLinkModel extends Base
TaskModel::TABLE.'.project_id',
TaskModel::TABLE.'.column_id',
TaskModel::TABLE.'.color_id',
+ TaskModel::TABLE.'.date_completed',
+ TaskModel::TABLE.'.date_started',
+ TaskModel::TABLE.'.date_due',
TaskModel::TABLE.'.time_spent AS task_time_spent',
TaskModel::TABLE.'.time_estimated AS task_time_estimated',
TaskModel::TABLE.'.owner_id AS task_assignee_id',