fix fix fi x fix
This commit is contained in:
@@ -37,6 +37,23 @@ app.conf.beat_schedule = {
|
||||
'task': 'check_approaching_limits',
|
||||
'schedule': crontab(hour=9, minute=0), # Daily at 09:00 to warn users
|
||||
},
|
||||
# Subscription Renewal Tasks
|
||||
'send-renewal-notices': {
|
||||
'task': 'billing.send_renewal_notices',
|
||||
'schedule': crontab(hour=9, minute=0), # Daily at 09:00
|
||||
},
|
||||
'process-subscription-renewals': {
|
||||
'task': 'billing.process_subscription_renewals',
|
||||
'schedule': crontab(hour=0, minute=5), # Daily at 00:05
|
||||
},
|
||||
'send-invoice-reminders': {
|
||||
'task': 'billing.send_invoice_reminders',
|
||||
'schedule': crontab(hour=10, minute=0), # Daily at 10:00
|
||||
},
|
||||
'check-expired-renewals': {
|
||||
'task': 'billing.check_expired_renewals',
|
||||
'schedule': crontab(hour=0, minute=15), # Daily at 00:15
|
||||
},
|
||||
# Automation Tasks
|
||||
'check-scheduled-automations': {
|
||||
'task': 'automation.check_scheduled_automations',
|
||||
|
||||
Reference in New Issue
Block a user