This commit is contained in:
777
2025-09-19 02:07:47 +08:00
parent 77e19742e7
commit 8af9b38aef
5 changed files with 36 additions and 2 deletions

View File

@@ -222,4 +222,12 @@ public class UserController extends BaseController {
userService.enSpeckIm(userId);
return R.ok();
}
@Log(title = "刷新用户IM信息", businessType = BusinessType.OTHER)
@GetMapping("/refreshImInfo")
public R<Void> refreshImInfo(Long userId){
userService.refreshImInfo(userId);
return R.ok();
}
}