Merge remote-tracking branch 'origin/master' into dev
This commit is contained in:
commit
99b0d2767b
|
@ -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());
|
||||
|
|
Loading…
Reference in New Issue
Block a user