* refactor: send_reminders.py -> celery task * chore: add PeriodicTask * chore: remove management command and tests
11 lines
190 B
Python
11 lines
190 B
Python
# Copyright The IETF Trust 2024, All Rights Reserved
|
|
|
|
from celery import shared_task
|
|
|
|
from .utils import send_reminders
|
|
|
|
|
|
@shared_task
|
|
def send_nomcom_reminders_task():
|
|
send_reminders()
|