Add background conversion taks to the converter app

This commit is contained in:
Roberto Rosario
2014-10-03 02:41:10 -04:00
parent 9efe1febe7
commit 2833b6a4ec

View File

@@ -0,0 +1,12 @@
import logging
from mayan.celery import app
from .api import convert
logger = logging.getLogger(__name__)
@app.task
def task_convert(*args, **kwargs):
return convert(*args, **kwargs)