class DashboardAdminController extends AbstractDashboardController | class DashboardAdminController extends AbstractDashboardController | ||||
{ | { | ||||
public function index(): Response | public function index(): Response | ||||
{ | { | ||||
return $this->render('@LcSov/adminlte/dashboard.html.twig'); | return $this->render('@LcSov/adminlte/dashboard.html.twig'); |
public function getReminders($params) | public function getReminders($params) | ||||
{ | { | ||||
return $this->reminderStore->get(array_merge( | |||||
[ | |||||
'user' => $this->security->getUser() | |||||
], $params) | |||||
); | |||||
//TODO !!!!!! | |||||
return array(); | |||||
} | } | ||||
} | } |