feat/FRO-31 Small backend changes #108

Merged
Janis merged 3 commits from feat/FRO-31 into main 2025-12-11 07:10:24 +01:00
2 changed files with 4 additions and 3 deletions
Showing only changes of commit 7f768e8c65 - Show all commits

View File

@@ -34,7 +34,7 @@ class StatusController @Inject()(
Json.obj(
"status" -> "authenticated",
"username" -> user.name,
"inGame" -> "false"
"inGame" -> false
)
)
} else {
@@ -43,7 +43,7 @@ class StatusController @Inject()(
Json.obj(
"status" -> "authenticated",
"username" -> user.name,
"inGame" -> "true",
"inGame" -> true,
"gameId" -> game.id
)
)