feat(user-sessions): add JWT-based session management and main menu route
This commit is contained in:
@@ -1 +1,12 @@
|
||||
# https://www.playframework.com/documentation/latest/Configuration
|
||||
play.filters.disabled += play.filters.csrf.CSRFFilter
|
||||
|
||||
|
||||
auth {
|
||||
issuer = "knockoutwhistweb"
|
||||
audience = "ui"
|
||||
privateKeyFile = D:\Workspaces\Gitops\rsa512-private.pem # ${?PUBLIC_KEY_FILE}
|
||||
privateKeyPem = ${?PUBLIC_KEY_PEM}
|
||||
publicKeyFile = D:\Workspaces\Gitops\rsa512-public.pem #${?PUBLIC_KEY_FILE}
|
||||
publicKeyPem = ${?PUBLIC_KEY_PEM}
|
||||
}
|
||||
|
||||
@@ -13,7 +13,7 @@ GET /assets/*file controllers.Assets.versioned(path="/public",
|
||||
|
||||
GET /rules controllers.HomeController.rules()
|
||||
|
||||
|
||||
GET /mainmenu controllers.UserController.mainMenu()
|
||||
GET /login controllers.UserController.login()
|
||||
POST /login controllers.UserController.login_Post()
|
||||
GET /logout controllers.UserController.logout()
|
||||
Reference in New Issue
Block a user