bugfix: removed duplicate protocol
Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
@@ -78,7 +78,7 @@ public class Application {
|
||||
new Forward(INDEX).bindPath(ROOT).on(server);
|
||||
new WellKnownController().bindPath(WELL_KNOWN, "/realms/oidc" + WELL_KNOWN).on(server);
|
||||
new UserController(mailConfig, sessionService, userService, staticPages).bindPath(API_USER).on(server);
|
||||
var tokenControllerConfig = new TokenController.Configuration( 10);
|
||||
var tokenControllerConfig = new TokenController.Configuration(10);
|
||||
new TokenController(authService, clientService, keyManager, userService, tokenControllerConfig).bindPath(API_TOKEN).on(server);
|
||||
new ClientController(authService, clientService, sessionService, userService).bindPath(API_CLIENT).on(server);
|
||||
new KeyStoreController(keyStore).bindPath(JWKS).on(server);
|
||||
|
||||
@@ -115,7 +115,7 @@ public class TokenController extends PathHandler {
|
||||
var user = optUser.get();
|
||||
|
||||
var accessToken = users.accessToken(user);
|
||||
var issuer = "https://"+hostname(ex);
|
||||
var issuer = hostname(ex);
|
||||
String jwToken = createJWT(client, user, accessToken, issuer);
|
||||
ex.getResponseHeaders().add("Cache-Control", "no-store");
|
||||
JSONObject response = new JSONObject();
|
||||
|
||||
Reference in New Issue
Block a user