diff options
Diffstat (limited to 'app/Controller/Board.php')
-rw-r--r-- | app/Controller/Board.php | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/app/Controller/Board.php b/app/Controller/Board.php index f4d17f92..3671b5fc 100644 --- a/app/Controller/Board.php +++ b/app/Controller/Board.php @@ -416,22 +416,6 @@ class Board extends Base } /** - * Change the status of a subtask from the mouseover - * - * @access public - */ - public function toggleSubtask() - { - $task = $this->getTask(); - $this->subTask->toggleStatus($this->request->getIntegerParam('subtask_id')); - - $this->response->html($this->template->render('board/subtasks', array( - 'subtasks' => $this->subTask->getAll($task['id']), - 'task' => $task, - ))); - } - - /** * Display all attachments during the task mouseover * * @access public |