summaryrefslogtreecommitdiff
path: root/app/Controller/Board.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-02-04 22:19:32 -0500
committerFrederic Guillot <fred@kanboard.net>2015-02-04 22:19:32 -0500
commitb24b1e7e4e5ee0551ee56aa0f21c4425b479db2e (patch)
tree5fffaeb461707dada9f2909101d51c9da3c77a50 /app/Controller/Board.php
parent2d070627d751bf5728ec98a5efaf163532594cd9 (diff)
Add subtasks restrictions and time tracking
Diffstat (limited to 'app/Controller/Board.php')
-rw-r--r--app/Controller/Board.php16
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