Pre Merge pull request !417 from 简单风/feature-regulation

pull/417/MERGE
简单风 2022-12-13 07:10:21 +00:00 committed by Gitee
commit 122738e83c
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
1 changed files with 1 additions and 5 deletions

View File

@ -63,11 +63,7 @@ public class SysProfileController extends BaseController
public boolean checkPassword(String password)
{
SysUser user = getSysUser();
if (passwordService.matches(user, password))
{
return true;
}
return false;
return passwordService.matches(user, password);
}
@GetMapping("/resetPwd")