feat(user-sessions): implement user login, logout, and session management

This commit is contained in:
2025-10-28 18:32:57 +01:00
parent e2c4da68ca
commit 93b0766138
9 changed files with 186 additions and 4 deletions

View File

@@ -12,3 +12,8 @@ GET /ingame/:id controllers.HomeController.ingame(id: String
GET /assets/*file controllers.Assets.versioned(path="/public", file: Asset)
GET /rules controllers.HomeController.rules()
GET /login controllers.UserController.login()
POST /login controllers.UserController.login_Post()
GET /logout controllers.UserController.logout()