summaryrefslogtreecommitdiff
path: root/app/Model/TaskFinder.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-02-07 21:56:04 -0500
committerFrederic Guillot <fred@kanboard.net>2015-02-07 21:56:04 -0500
commit563941c70d4ef8a66c01d6fa7529d4f905efaf3e (patch)
treed99357fa9545146ab2071855d32c877131b9cd60 /app/Model/TaskFinder.php
parentc9cc82eec898654846c3c7e409269166cc5dba7c (diff)
Add task time tracking on the dashboard
Diffstat (limited to 'app/Model/TaskFinder.php')
-rw-r--r--app/Model/TaskFinder.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/Model/TaskFinder.php b/app/Model/TaskFinder.php
index 42f2f273..4ed196ef 100644
--- a/app/Model/TaskFinder.php
+++ b/app/Model/TaskFinder.php
@@ -59,6 +59,8 @@ class TaskFinder extends Base
'tasks.date_creation',
'tasks.project_id',
'tasks.color_id',
+ 'tasks.time_spent',
+ 'tasks.time_estimated',
'projects.name AS project_name'
)
->join(Project::TABLE, 'id', 'project_id')