Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: remove unnecessary role #1374

Merged
merged 1 commit into from
Aug 10, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 3 additions & 15 deletions console/utils/perms.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@
# what is What is 10000 and 20000?
["", "", 100000],
["", "", 200000],
["users", "企业用户查询和创建", 800003],
["query", "用户模糊查询", 800002],
["upload", "上传", 800001],
]
},
"app_store": {
Expand All @@ -40,21 +43,6 @@
["delete_app_version", "删除应用版本", 110010],
]
},
"upload_file": {
"perms": [
["upload", "上传", 800001],
]
},
"fuzzy_query_user": {
"perms": [
["query", "用户模糊查询", 800002],
]
},
"enterprise_users": {
"perms": [
["users", "企业用户查询和创建", 800003],
]
},
}

common_perms = [
Expand Down
Loading