You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@Authenticate()
@ListAPIGuard( SyndicateUser, caller_user="caller_user", parse_args=SyndicateUser.ParseArgs )
def list_volume_user_ids( volume_name_or_id, **attrs ):
"""
List the emails of the users that can access data
in a given volume. That is, which users have
registered User Gateways that can access
the volume's metadata.
Positional arguments:
volume_name (str):
The name of the volume to query.
Returns:
The list of emails of users that can run User Gateways
within this volume.
Authorization:
An administrator can list any Volume's user IDs.
A user must own the Volume.
"""
return storage.list_volume_user_ids( volume_name_or_id, **attrs )
The text was updated successfully, but these errors were encountered:
The
list_volume_user_ids
command insyndicate
admin tool is broken. It calls astorage.list_volume_user_ids
function which is non-existing.from https://github.com/syndicate-storage/syndicate-core/blob/master/ms/common/api.py#L341
The text was updated successfully, but these errors were encountered: