summaryrefslogtreecommitdiff
path: root/app/Model/TaskFinder.php
diff options
context:
space:
mode:
authorashbike <helloashbike@gmail.com>2015-02-11 16:52:07 +0530
committerashbike <helloashbike@gmail.com>2015-02-11 16:52:07 +0530
commit59ee6f9fee1c8a8245d859c8788d6819223e3d20 (patch)
tree67d7b02213fd162a00cd29d3021fd1ef5ac4fa5d /app/Model/TaskFinder.php
parentefbf679385773e76cbb436691f63e931c17172d4 (diff)
Task age and time spent in one column.
Details: https://github.com/fguillot/kanboard/issues/608
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 4ed196ef..05168593 100644
--- a/app/Model/TaskFinder.php
+++ b/app/Model/TaskFinder.php
@@ -102,6 +102,7 @@ class TaskFinder extends Base
'tasks.is_active',
'tasks.score',
'tasks.category_id',
+ 'tasks.date_moved',
'users.username AS assignee_username',
'users.name AS assignee_name'
)
@@ -242,6 +243,7 @@ class TaskFinder extends Base
tasks.score,
tasks.category_id,
tasks.swimlane_id,
+ tasks.date_moved,
project_has_categories.name AS category_name,
projects.name AS project_name,
columns.title AS column_title,