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 8630435 commit 392fda2Copy full SHA for 392fda2
user_sync/connector/connector_umapi.py
@@ -25,6 +25,7 @@
25
26
import jwt
27
import umapi_client
28
+from umapi_client import GroupAction
29
30
import user_sync.connector.helper
31
import user_sync.helper
@@ -200,7 +201,7 @@ def iter_user_groups(self):
200
201
202
def create_group(self, name):
203
if name:
- group = umapi_client.UserGroupAction(group_name=name)
204
+ group = GroupAction(group_name=name)
205
group.create(description="Automatically created by User Sync Tool")
206
return self.connection.execute_single(group)
207
0 commit comments