mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-03-18 15:34:01 +01:00
10 lines
259 B
Python
10 lines
259 B
Python
from procrastinate.contrib.django import app
|
|
|
|
from apps.transactions.models import RecurringTransaction
|
|
|
|
|
|
@app.periodic(cron="0 0 * * *")
|
|
@app.task
|
|
def generate_recurring_transactions(timestamp=None):
|
|
RecurringTransaction.generate_upcoming_transactions()
|