sso update
This commit is contained in:
@@ -60,6 +60,7 @@ public class SsoController implements InterceptorSkipController {
|
|||||||
// 기본 정보
|
// 기본 정보
|
||||||
Properties info = ssoModule.getUserInfos(ssoId);
|
Properties info = ssoModule.getUserInfos(ssoId);
|
||||||
if (info != null) {
|
if (info != null) {
|
||||||
|
log.debug("info - {}", info.keySet());
|
||||||
info.keySet().forEach( k -> {
|
info.keySet().forEach( k -> {
|
||||||
log.debug("{} : {}", k, info.get(k));
|
log.debug("{} : {}", k, info.get(k));
|
||||||
});
|
});
|
||||||
@@ -70,6 +71,7 @@ public class SsoController implements InterceptorSkipController {
|
|||||||
// 확장 정보
|
// 확장 정보
|
||||||
Properties extendedInfo = ssoModule.getUserExFields(ssoId);
|
Properties extendedInfo = ssoModule.getUserExFields(ssoId);
|
||||||
if (extendedInfo != null) {
|
if (extendedInfo != null) {
|
||||||
|
log.debug("extendedInfo - {}", info.keySet());
|
||||||
extendedInfo.keySet().forEach( k -> {
|
extendedInfo.keySet().forEach( k -> {
|
||||||
log.debug("{} : {}", k, extendedInfo.get(k));
|
log.debug("{} : {}", k, extendedInfo.get(k));
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user