Quite some work done here.

This commit is contained in:
Frank
2026-01-03 22:12:51 +01:00
parent b58da74967
commit 654b4036b4
28 changed files with 657 additions and 40 deletions
+3 -1
View File
@@ -12,6 +12,8 @@ final class GameController extends AbstractController
#[Route(path: '', name: 'game')]
public function index(): Response
{
return $this->render('game/index.html.twig');
return $this->render('game/index.html.twig', [
'user_id' => $this->getUser()?->getId(),
]);
}
}