This commit is contained in:
张良(004796)
2024-02-05 11:01:05 +08:00
parent 9e29c5f321
commit df8890abdb
2 changed files with 9 additions and 1 deletions

View File

@@ -100,6 +100,14 @@ public class AuthAppController {
return R.ok(vo);
}
@PostMapping("/loginOut")
@Operation(summary = "登出")
@Log(title = "登出", businessType = BusinessType.OTHER, isSaveDb = false)
public R<Void> loginOut(){
caiLoginManager.logout();
return R.ok();
}
@PostMapping("/resetPassword")
@Operation(summary = "重置密码")
@Log(title = "重置密码", businessType = BusinessType.OTHER, isSaveDb = false)