diff options
Diffstat (limited to 'app/Controller')
-rw-r--r-- | app/Controller/TaskReorderController.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app/Controller/TaskReorderController.php b/app/Controller/TaskReorderController.php index 32bdfc52..ae03ac2c 100644 --- a/app/Controller/TaskReorderController.php +++ b/app/Controller/TaskReorderController.php @@ -29,6 +29,9 @@ class TaskReorderController extends BaseController case 'assignee': $this->taskReorderModel->reorderByAssignee($project['id'], $swimlaneID, $columnID, $direction); break; + case 'due-date': + $this->taskReorderModel->reorderByDueDate($project['id'], $swimlaneID, $columnID, $direction); + break; } $this->response->redirect($this->helper->url->to('BoardViewController', 'show', ['project_id' => $project['id']])); |