From 0dfe48b7fa475aade00a8ccf42e3dba99dfa3702 Mon Sep 17 00:00:00 2001 From: "Dzial Techniczny WMW Projekt s.c" Date: Wed, 8 Apr 2020 14:01:28 +0200 Subject: "My tasks" view grops tasks by project - fixes #107 --- app/Controller/DashboardController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'app/Controller/DashboardController.php') diff --git a/app/Controller/DashboardController.php b/app/Controller/DashboardController.php index 6758381e..320ee4dd 100644 --- a/app/Controller/DashboardController.php +++ b/app/Controller/DashboardController.php @@ -36,9 +36,9 @@ class DashboardController extends BaseController { $user = $this->getUser(); - $this->response->html($this->helper->layout->dashboard('dashboard/tasks', array( + $this->response->html($this->helper->layout->dashboard('dashboard/project_tasks', array( 'title' => t('Tasks overview for %s', $this->helper->user->getFullname($user)), - 'paginator' => $this->taskPagination->getDashboardPaginator($user['id'], 'tasks', 50), + 'paginator' => $this->taskPagination->getDashboardPerProjectPaginator($user['id'], 'tasks', 50), 'user' => $user, ))); } -- cgit v1.2.3