mirror of https://github.com/CIRCL/AIL-framework
chg: [API json import] take list as imput
parent
8d727cbd31
commit
6f3cb17beb
|
@ -104,6 +104,8 @@ def api_import_json_item(data_json):
|
||||||
return ({'status': 'error', 'reason': 'Malformed JSON'}, 400)
|
return ({'status': 'error', 'reason': 'Malformed JSON'}, 400)
|
||||||
|
|
||||||
# # TODO: add JSON verification
|
# # TODO: add JSON verification
|
||||||
res = add_json_to_json_queue(data_json)
|
for item_json in data_json:
|
||||||
if not res:
|
res = add_json_to_json_queue(item_json)
|
||||||
|
if res:
|
||||||
|
return ({'status': 'error'}, 400)
|
||||||
return ({'status': 'success'}, 200)
|
return ({'status': 'success'}, 200)
|
||||||
|
|
Loading…
Reference in New Issue