mirror of https://github.com/zulip/zulip.git
invoice_plans: Add comment to help with testing.
This will help us run invoice plans on a specific date. Having this in comment here would save me time adding this every time.
This commit is contained in:
parent
a2e0c84a7e
commit
17c88de75d
|
@ -15,4 +15,7 @@ class Command(ZulipBaseCommand):
|
|||
@override
|
||||
def handle(self, *args: Any, **options: Any) -> None:
|
||||
if settings.BILLING_ENABLED:
|
||||
# Uncomment to test with a specific date.
|
||||
# from datetime import datetime, timezone
|
||||
# date = datetime(2024, 5, 7, tzinfo=timezone.utc)
|
||||
invoice_plans_as_needed()
|
||||
|
|
Loading…
Reference in New Issue