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.
1 parent 899b4fa commit 596c3acCopy full SHA for 596c3ac
services/storage/src/simcore_service_storage/modules/db/access_layer.py
@@ -338,7 +338,8 @@ async def get_file_access_rights( # pylint:disable=too-many-return-statements #
338
339
if parent == EXPORTS_S3_PREFIX:
340
# ownership still not defined, so we assume it is user_id
341
- return AccessRights.all()
+ # only read access is required
342
+ return AccessRights(read=True, write=False, delete=False)
343
344
# otherwise assert 'parent' string corresponds to a valid UUID
345
access_rights = await self.get_project_access_rights(
0 commit comments