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
:param memberships: Bulk memberships to update of the form: [ {groupId: <groupId>,users: ["user1", "user2", "user3"]}, {groupId:<another-groupId>, users: ["user2", "user8"]} (users and groupId will be ignored)
167
+
159
168
:rtype: dict
160
169
:return: dictionary of group information
161
170
"""
162
-
data= {
163
-
'groupId': group_id,
164
-
'users': users,
165
-
}
171
+
172
+
ifnotgroup_idandnotmemberships:
173
+
raiseException("group_id+users or memberships is required")
0 commit comments