summaryrefslogtreecommitdiff
path: root/app/Controller/Subtask.php
diff options
context:
space:
mode:
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