修改免权限接口

This commit is contained in:
TinyAnts 2022-04-20 11:14:07 +08:00
parent eaf8b492d7
commit 5c6204f489
1 changed files with 3 additions and 1 deletions

View File

@ -22,7 +22,9 @@ public class AdminConfig {
// 免权限验证
public static String[] notAuthUri = new String[]{
"system:admin:upInfo" // 管理员更新接口
"system:admin:upInfo", // 管理员更新
"system:admin:self", // 管理员信息
"system/logout" // 退出登录
};
}