maintenance.py 312 B

12345678910
  1. from django.conf import settings
  2. from .models import StripePrice, StripeProduct, StripeSubscription
  3. async def sync_stripe_models():
  4. if settings.BILLING_ENABLED:
  5. await StripeProduct.sync_from_stripe()
  6. await StripePrice.sync_from_stripe()
  7. await StripeSubscription.sync_from_stripe()