-
Bug
-
Resolution: Fixed
-
None
-
Medium
-
-
Emptyshow more show less
Problem
The code in editor_TaskController::kpiAction
$rows = $this->taskViewDataProvider->getTaskList( $this->authenticatedUser, $this->adjustFilter($this->entity->getFilter()), (int) $this->getParam('start', 0), (int) $this->getParam('limit', 0), );
is the wrong for that use case. It loads internally much to much additional data.
Solution
We need something similar to
getProjectIdList
which only loads the affected project IDs.
Or in other words:
getTaskList
without the internally called buildTaskView