|
|
@@ -113,7 +113,7 @@ public class AuthController {
|
|
|
scheduledExecutorService.schedule(() -> {
|
|
|
SseMessageDto dto = new SseMessageDto();
|
|
|
dto.setUserIds(List.of(userId));
|
|
|
- dto.setMessage(DateUtils.getTodayHour(new Date()) + "好,欢迎登录 RuoYi-Vue-Plus 后台管理系统");
|
|
|
+ dto.setMessage(DateUtils.getTodayHour(new Date()) + "好,欢迎登录平台!");
|
|
|
SseMessageUtils.publishMessage(dto);
|
|
|
}, 3, TimeUnit.SECONDS);
|
|
|
return R.ok(loginVo);
|
|
|
@@ -127,7 +127,7 @@ public class AuthController {
|
|
|
*/
|
|
|
@GetMapping("/binding/{source}")
|
|
|
public R<String> authBinding(@PathVariable("source") String source, @RequestParam String tenantId,
|
|
|
- @RequestParam String domain) {
|
|
|
+ @RequestParam String domain) {
|
|
|
SocialLoginConfigProperties obj = socialProperties.getType().get(source);
|
|
|
if (ObjectUtil.isNull(obj)) {
|
|
|
return R.fail(source + "平台账号暂不支持");
|