refactor(ff-admin): 优化 API 登录返回信息

- 在 ApiGameController 中的 loginWithoutRedirect 方法调用后,添加了更详细的返回信息
- 返回结果中增加了 "操作成功" 的提示,以提供更多的上下文信息给前端
main-p
shi 2025-02-15 15:43:26 +08:00
parent 5526ad34c5
commit 9beed7e56e
1 changed files with 1 additions and 1 deletions

View File

@ -145,7 +145,7 @@ public class ApiGameController extends BaseController {
String login = iGamesService.loginWithoutRedirect(gamesLogin);
return AjaxResult.success(login);
return AjaxResult.success("操作成功",login);
}