fix document import

This commit is contained in:
j 2018-11-05 20:27:03 +00:00
commit ce234bdea5
4 changed files with 19 additions and 10 deletions

View file

@ -2,14 +2,15 @@
from __future__ import division, print_function, absolute_import
from oxdjango.decorators import login_required_json
from oxdjango.shortcuts import render_to_json_response
from oxdjango.shortcuts import render_to_json_response, json_response
from oxdjango.api import actions
from .tasks import import_documents
@login_required_json
def importDocuments(request, data):
t = tasks.import_documents.delay(urls=data['urls'])
response = json_response({})
t = import_documents.delay(urls=data['urls'])
response['data']['taskId'] = t.task_id
return render_to_json_response(response)
actions.register(importDocuments)