summaryrefslogtreecommitdiff
path: root/app/Controller/Subtask.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2016-03-18 21:00:14 -0400
committerFrederic Guillot <fred@kanboard.net>2016-03-18 21:00:14 -0400
commit854457baf0043b51ce9c30f36a6fecaed97cb04d (patch)
tree0f73023f63654ee7313ac79e83d9d19e58658a1a /app/Controller/Subtask.php
parent68fba8fb64afe00aedccdf72f25d79b26356f2ab (diff)
Improve task summary sections
Diffstat (limited to 'app/Controller/Subtask.php')
-rw-r--r--app/Controller/Subtask.php17
1 files changed, 0 insertions, 17 deletions
diff --git a/app/Controller/Subtask.php b/app/Controller/Subtask.php
index bc2108f9..dea2b08e 100644
--- a/app/Controller/Subtask.php
+++ b/app/Controller/Subtask.php
@@ -11,23 +11,6 @@ namespace Kanboard\Controller;
class Subtask extends Base
{
/**
- * Show list of subtasks
- */
- public function show()
- {
- $task = $this->getTask();
-
- $this->response->html($this->helper->layout->task('subtask/show', array(
- 'users_list' => $this->projectUserRole->getAssignableUsersList($task['project_id']),
- 'task' => $task,
- 'project' => $this->getProject(),
- 'subtasks' => $this->subtask->getAll($task['id']),
- 'editable' => true,
- 'show_title' => true,
- )));
- }
-
- /**
* Creation form
*
* @access public