Disable keycloak challenge in REST calls(you're either logged in, or
not).
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -65,7 +65,7 @@ if (outcome == AuthOutcome.AUTHENTICATED) { | ... | @@ -65,7 +65,7 @@ if (outcome == AuthOutcome.AUTHENTICATED) { |
65 | AuthChallenge challenge = authenticator.getChallenge() | 65 | AuthChallenge challenge = authenticator.getChallenge() |
66 | ec.logger.info("challenge: ${challenge}") | 66 | ec.logger.info("challenge: ${challenge}") |
67 | if (challenge != null) { | 67 | if (challenge != null) { |
68 | if (challenge.challenge(facade)) { | 68 | if (false && challenge.challenge(facade)) { |
69 | //sri.stopRender() | 69 | //sri.stopRender() |
70 | //return | 70 | //return |
71 | } | 71 | } | ... | ... |
-
Please register or sign in to post a comment