Merge remote-tracking branch 'origin/master' into dev

This commit is contained in:
墨大叔 2024-07-22 10:32:14 +08:00
commit 99b0d2767b

View File

@ -31,16 +31,10 @@ public class AppAuthController extends BaseController {
@Autowired
private SysLoginService loginService;
@Value("${debug}")
private Boolean debug;
@Deprecated
@ApiOperation("前台用户账号密码登录(临时测试接口)")
@ApiOperation("前台用户账号密码登录")
@PostMapping("/login")
public AjaxResult login(@RequestBody LoginBody body) {
if (!this.debug) {
return AjaxResult.error("该接口不允许访问");
}
AjaxResult ajax = AjaxResult.success();
// 生成令牌
String token = loginService.appLogin(body.getUsername(), body.getPassword());