diff options
| author | Frédéric Guillot <fred@kanboard.net> | 2014-05-25 15:02:27 -0400 |
|---|---|---|
| committer | Frédéric Guillot <fred@kanboard.net> | 2014-05-25 15:02:27 -0400 |
| commit | f9753e91d288c4d87d6a83ffe994d312eae5a3fd (patch) | |
| tree | 96877bed70873e55aa5139f0ac6245c817e5911d /app/Controller/Task.php | |
| parent | 9ddeb5d978db9b1f223c98bbe83ac40fc4474225 (diff) | |
Add subtasks
Diffstat (limited to 'app/Controller/Task.php')
| -rw-r--r-- | app/Controller/Task.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/Controller/Task.php b/app/Controller/Task.php index 8230eef3..68e3728a 100644 --- a/app/Controller/Task.php +++ b/app/Controller/Task.php @@ -62,6 +62,7 @@ class Task extends Base $this->response->html($this->taskLayout('task_show', array( 'files' => $this->file->getAll($task['id']), 'comments' => $this->comment->getAll($task['id']), + 'subtasks' => $this->subTask->getAll($task['id']), 'task' => $task, 'columns_list' => $this->board->getColumnsList($task['project_id']), 'colors_list' => $this->task->getColors(), |
