fix: add check if the users need to be imported (#716)

This commit is contained in:
pablohashescobar 2023-04-06 13:58:56 +05:30 committed by GitHub
parent f2144c3e89
commit 105428894f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -38,6 +38,8 @@ def service_importer(service, importer_id):
users = importer.data.get("users", [])
# Check if we need to import users as well
if len(users):
# For all invited users create the uers
new_users = User.objects.bulk_create(
[
@ -63,7 +65,6 @@ def service_importer(service, importer_id):
]
)
# Add new users to Workspace and project automatically
WorkspaceMember.objects.bulk_create(
[