Skip to content

Commit 2d39dd3

Browse files
Updates role inheritance for improved permission structure
Changes the inheritance of a specific user role to inherit from a higher-level role, aligning permissions with organizational hierarchy and intended access control. Improves clarity and maintainability of the role-based authorization logic.
1 parent fbfc6fc commit 2d39dd3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

services/web/server/src/simcore_service_webserver/security/_authz_access_roles.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ class PermissionDict(TypedDict, total=False):
120120
"resource-usage.write",
121121
"storage.files.sync",
122122
],
123-
inherits=[UserRole.TESTER],
123+
inherits=[UserRole.PRODUCT_OWNER],
124124
),
125125
}
126126

0 commit comments

Comments
 (0)