Fixed bug in gam <UserTypeEntity> print shareddrives where role was improperly displayed as unknown

This commit is contained in:
Ross Scroggs
2024-02-01 15:40:18 -08:00
parent e7e653d395
commit ee68669652
2 changed files with 4 additions and 1 deletions

View File

@@ -15,6 +15,9 @@ See [Downloads](https://github.com/taers232c/GAMADV-XTD3/wiki/Downloads) for Win
Updated `<ToDriveAttribute>` to allow multiple `tdshare <EmailAddress> commenter|reader|writer` options.
Fixed bug in `gam <UserTypeEntity> print shareddrives` where `role` was improperly displayed as `unknown`
rather than `reader` when `Allow viewers and commenters to download, print, and copy files` was unchecked for the Shared Drive.
### 6.67.31
Updated `gam <UserTypeEntity> claim|transfer ownership <DriveFileEntity>` to properly

View File

@@ -61836,7 +61836,7 @@ SHAREDDRIVE_ROLES_CAPABILITIES_MAP = {
'commenter': {'canComment': True, 'canEdit': False},
'fileOrganizer': {'canAddChildren': True, 'canManageMembers': False},
'organizer': {'canManageMembers': True},
'reader': {'canCopy': True, 'canComment': False},
'reader': {'canEdit': False, 'canComment': False},
'writer': {'canEdit': True, 'canManageMembers': False},
}