feat(ui): UI now shows player names instead of their id (#11)

Reviewed-on: #11
This commit is contained in:
2025-10-23 08:17:11 +02:00
parent ccf44ede41
commit c168ae7dc0
6 changed files with 10 additions and 264 deletions

View File

@@ -44,7 +44,7 @@ class HomeController @Inject()(val controllerComponents: ControllerComponents) e
def sessions(): Action[AnyContent] = {
Action { implicit request =>
Ok(views.html.sessions.apply(PodGameManager.listSessions().map(f => f.toString)))
Ok(views.html.sessions.apply(PodGameManager.listSessions()))
}
}