utils.py 259 B

12345678910
  1. from django.conf import settings
  2. from apps.organizations_ext.models import Organization
  3. async def is_organization_creation_open() -> bool:
  4. return (
  5. settings.ENABLE_ORGANIZATION_CREATION
  6. or not await Organization.objects.aexists()
  7. )