feat: 数据库直连操作权限

This commit is contained in:
TsMask
2023-09-04 14:44:44 +08:00
parent c6eed87f40
commit e95679ea4b
3 changed files with 50 additions and 32 deletions

View File

@@ -42,7 +42,7 @@ func IsAdmin(userID string) bool {
}
// 从本地配置获取user信息
// admins := Get("user.adminList").([]any)
admins := []string{"1"}
admins := []string{"1", "2", "3"}
for _, s := range admins {
if s == userID {
return true