local app
This commit is contained in:
parent
d255ed6a03
commit
a775ed3055
7 changed files with 314 additions and 3 deletions
15
views.py
Normal file
15
views.py
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
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.api import actions
|
||||
|
||||
from .tasks import import_documents
|
||||
|
||||
@login_required_json
|
||||
def importDocuments(request, data):
|
||||
t = tasks.import_documents.delay(urls=data['urls'])
|
||||
response['data']['taskId'] = t.task_id
|
||||
return render_to_json_response(response)
|
||||
actions.register(importDocuments)
|
||||
Loading…
Add table
Add a link
Reference in a new issue