Skip to content

Commit

Permalink
Merge branch 'master' into import-categories-0
Browse files Browse the repository at this point in the history
  • Loading branch information
labhvam5 committed Dec 3, 2023
2 parents a68a04f + 596dda8 commit 47b1ad1
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions scripts/python/post-integrations.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
from apps.workspaces.actions import post_to_integration_settings
from apps.workspaces.models import Workspace

workspaces = Workspace.objects.filter(onboarding_state='COMPLETE')

for workspace in workspaces:
print("Posting to integration settings for workspace: {}".format(workspace.id))
post_to_integration_settings(workspace.id, True)

0 comments on commit 47b1ad1

Please sign in to comment.