Compare commits

...

2 Commits

Author SHA1 Message Date
TeamCity
9a194a9fd7 ci: bump version to v4.44.0 2026-01-20 19:50:33 +00:00
fccd94cc11 feat: Use environment variables for Keycloak client configuration in staging 2026-01-20 20:48:18 +01:00
3 changed files with 8 additions and 3 deletions

View File

@@ -408,3 +408,8 @@
### Features
* Simplify authorization request creation in OpenIDConnectService and use environment variables for Keycloak configuration ([82a9706](https://git.janis-eccarius.de/KnockOutWhist/KnockOutWhist-Web/commit/82a9706deb97db193015e55a048830d496e76d83))
## (2026-01-20)
### Features
* Use environment variables for Keycloak client configuration in staging ([fccd94c](https://git.janis-eccarius.de/KnockOutWhist/KnockOutWhist-Web/commit/fccd94cc11db43f99eded13207cc93fb59d8703e))

View File

@@ -25,8 +25,8 @@ openid {
}
keycloak {
clientId = "your-keycloak-client-id"
clientSecret = "your-keycloak-client-secret"
clientId = ${?KEYCLOAK_CLIENT_ID}
clientSecret = ${?KEYCLOAK_CLIENT_SECRET}
redirectUri = "https://st.knockout.janis-eccarius.de/api/auth/keycloak/callback"
authUrl = ${?KEYCLOAK_AUTH_URL}
authUrl = "https://identity.janis-eccarius.de/realms/master"

View File

@@ -1,3 +1,3 @@
MAJOR=4
MINOR=43
MINOR=44
PATCH=0