forked from github/dataease
fix: 完善oidc登录逻辑
This commit is contained in:
parent
2712baa46f
commit
c588367076
@ -2,6 +2,7 @@ package io.dataease.plugins.server;
|
|||||||
|
|
||||||
import java.io.UnsupportedEncodingException;
|
import java.io.UnsupportedEncodingException;
|
||||||
import java.net.URLEncoder;
|
import java.net.URLEncoder;
|
||||||
|
import java.util.HashMap;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import java.util.stream.Collectors;
|
import java.util.stream.Collectors;
|
||||||
@ -113,7 +114,8 @@ public class SSOServer {
|
|||||||
}
|
}
|
||||||
private Map<String, String> config(OidcXpackService oidcXpackService) {
|
private Map<String, String> config(OidcXpackService oidcXpackService) {
|
||||||
List<SysSettingDto> sysSettingDtos = oidcXpackService.oidcSettings();
|
List<SysSettingDto> sysSettingDtos = oidcXpackService.oidcSettings();
|
||||||
Map<String, String> config = sysSettingDtos.stream().collect(Collectors.toMap(SysSettingDto::getParamKey, SysSettingDto::getParamValue));
|
Map<String, String> config = sysSettingDtos.stream().collect(HashMap::new,(m, v)->m.put(v.getParamKey(), v.getParamValue()), HashMap::putAll);
|
||||||
|
|
||||||
return config;
|
return config;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user