Commit 420ca6c841d580a3488da5b54e0ca0519e532e51
1 parent
40bd9a34
refactor(user): 移除SSO用户同步调用
Showing
1 changed file
with
3 additions
and
3 deletions
urbanops-module-system/src/main/java/com/zteits/urbanops/module/system/service/user/AdminUserServiceImpl.java
| ... | ... | @@ -121,7 +121,7 @@ public class AdminUserServiceImpl implements AdminUserService { |
| 121 | 121 | // 3. 记录操作日志上下文 |
| 122 | 122 | LogRecordContext.putVariable("user", user); |
| 123 | 123 | |
| 124 | - ssoService.syncUser(user); | |
| 124 | +// ssoService.syncUser(user); | |
| 125 | 125 | return user.getId(); |
| 126 | 126 | } |
| 127 | 127 | |
| ... | ... | @@ -240,7 +240,7 @@ public class AdminUserServiceImpl implements AdminUserService { |
| 240 | 240 | updateObj.setStatus(status); |
| 241 | 241 | userMapper.updateById(updateObj); |
| 242 | 242 | |
| 243 | - ssoService.syncUser(updateObj); | |
| 243 | +// ssoService.syncUser(updateObj); | |
| 244 | 244 | } |
| 245 | 245 | |
| 246 | 246 | @Override |
| ... | ... | @@ -261,7 +261,7 @@ public class AdminUserServiceImpl implements AdminUserService { |
| 261 | 261 | // 3. 记录操作日志上下文 |
| 262 | 262 | LogRecordContext.putVariable("user", user); |
| 263 | 263 | |
| 264 | - ssoService.syncUser(user); | |
| 264 | +// ssoService.syncUser(user); | |
| 265 | 265 | } |
| 266 | 266 | |
| 267 | 267 | @Override | ... | ... |