mirror of
https://gitee.com/dromara/dax-pay.git
synced 2025-10-14 05:40:25 +00:00
feat 同步脚手架代码, 更新数据库脚本和内容
This commit is contained in:
@@ -21,13 +21,10 @@ public class AuthProperties {
|
||||
/** 不进行鉴权的路径 */
|
||||
private List<String> ignoreUrls = new ArrayList<>();
|
||||
|
||||
/** 盐值 */
|
||||
private String salt = "salt";
|
||||
|
||||
/** 开启超级管理员(生产模式推荐关闭) */
|
||||
/** 开启超级管理员(生产模式请关闭) */
|
||||
private boolean enableAdmin = true;
|
||||
|
||||
/** 用户管理列表中是否显示 */
|
||||
/** 用户管理列表中是否显示超级管理员用户 */
|
||||
private boolean adminInList = true;
|
||||
|
||||
}
|
||||
|
@@ -37,6 +37,7 @@ public class TokenEndpoint {
|
||||
@Operation(summary = "退出")
|
||||
@PostMapping("/logout")
|
||||
public Result<Void> logout() {
|
||||
|
||||
tokenService.logout();
|
||||
return Res.ok();
|
||||
}
|
||||
|
Reference in New Issue
Block a user