Quite some work done here.

This commit is contained in:
Frank
2026-01-03 22:12:51 +01:00
parent af61a3b920
commit 5b6bfaf5ad
29 changed files with 658 additions and 41 deletions

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(),
]);
}
}