mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-19 14:44:37 +00:00
Fixing response type bug (#3251)
This commit is contained in:
parent
c14df3c3a2
commit
dfcfc6984d
@ -53,7 +53,7 @@ public class OidcProvider implements SsoProvider<OidcConfigs> {
|
|||||||
oidcConfiguration.setClientAuthenticationMethodAsString(_oidcConfigs.getClientAuthenticationMethod());
|
oidcConfiguration.setClientAuthenticationMethodAsString(_oidcConfigs.getClientAuthenticationMethod());
|
||||||
oidcConfiguration.setScope(_oidcConfigs.getScope());
|
oidcConfiguration.setScope(_oidcConfigs.getScope());
|
||||||
_oidcConfigs.getResponseType().ifPresent(oidcConfiguration::setResponseType);
|
_oidcConfigs.getResponseType().ifPresent(oidcConfiguration::setResponseType);
|
||||||
_oidcConfigs.getResponseMode().ifPresent(oidcConfiguration::setResponseType);
|
_oidcConfigs.getResponseMode().ifPresent(oidcConfiguration::setResponseMode);
|
||||||
_oidcConfigs.getUseNonce().ifPresent(oidcConfiguration::setUseNonce);
|
_oidcConfigs.getUseNonce().ifPresent(oidcConfiguration::setUseNonce);
|
||||||
_oidcConfigs.getCustomParamResource()
|
_oidcConfigs.getCustomParamResource()
|
||||||
.ifPresent(value -> oidcConfiguration.setCustomParams(ImmutableMap.of("resource", value)));
|
.ifPresent(value -> oidcConfiguration.setCustomParams(ImmutableMap.of("resource", value)));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user