We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bcb6e9d + 23014be commit 3b29979Copy full SHA for 3b29979
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