This commit is contained in:
jleroy2023
2024-11-20 15:48:47 +01:00
parent e6954b6ce3
commit 0ff9ac68b2
4 changed files with 15 additions and 2 deletions

View File

@@ -44,7 +44,7 @@ class AdminController extends AbstractController
$userConnect = $token?->getUser();
return $this->render('admin/user.html.twig', [
'profile' => $userConnect,
'participants' => $participantRepository->findAll(),
'participants' => $participantRepository->getAll(),
'controller_name' => 'AdminController',
]);
}