mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2024-11-08 09:15:19 +01:00
e96f1559e7
Allows you to get_email even without cron, thus enabling the use of django-helpdesk of cronless PaaS services.
9 lines
118 B
Python
9 lines
118 B
Python
from celery import task
|
|
|
|
from .email import process_email
|
|
|
|
|
|
@task()
|
|
def helpdesk_process_email():
|
|
process_email()
|