We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bcb6e9d commit 23014beCopy full SHA for 23014be
src/spaceone/core/handler/authorization_handler.py
@@ -65,5 +65,8 @@ def _check_permissions(user_permissions: list, permission: str):
65
66
@staticmethod
67
def _check_user_projects(user_projects: list, request_project_id: str) -> None:
68
+ if request_project_id == "*":
69
+ return
70
+
71
if request_project_id not in user_projects:
72
raise ERROR_PERMISSION_DENIED()
0 commit comments