diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-11-23 14:42:49 -0500 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-11-23 14:42:49 -0500 |
commit | 9ae83c639ef88e9274d21b1917357a3212d5988c (patch) | |
tree | 174a483ecaa84038cb80dd9a5b72da64caf9aa18 /app/Controller | |
parent | 4d007ec39fe808c28fe08516afe549aa5d0aeb42 (diff) |
Create TaskPosition model
Diffstat (limited to 'app/Controller')
-rw-r--r-- | app/Controller/Board.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controller/Board.php b/app/Controller/Board.php index f5bb4d80..e14b94c7 100644 --- a/app/Controller/Board.php +++ b/app/Controller/Board.php @@ -347,7 +347,7 @@ class Board extends Base $values = $this->request->getJson(); - if ($this->task->movePosition($project_id, $values['task_id'], $values['column_id'], $values['position'])) { + if ($this->taskPosition->movePosition($project_id, $values['task_id'], $values['column_id'], $values['position'])) { $this->response->html( $this->template->load('board/show', array( |