mirror of
https://git.mirrors.martin98.com/https://github.com/infiniflow/ragflow.git
synced 2025-08-13 07:29:02 +08:00
add interface to get doc infos by doc ids (#1950)
### What problem does this PR solve? ### Type of change - [ ] Bug Fix (non-breaking change which fixes an issue) - [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
parent
c6c3961250
commit
eedec157a7
@ -203,6 +203,14 @@ def list_docs():
|
|||||||
return server_error_response(e)
|
return server_error_response(e)
|
||||||
|
|
||||||
|
|
||||||
|
@manager.route('/infos', methods=['POST'])
|
||||||
|
def docinfos():
|
||||||
|
req = request.json
|
||||||
|
doc_ids = req["doc_ids"]
|
||||||
|
docs = DocumentService.get_by_ids(doc_ids)
|
||||||
|
return get_json_result(data=list(docs.dicts()))
|
||||||
|
|
||||||
|
|
||||||
@manager.route('/thumbnails', methods=['GET'])
|
@manager.route('/thumbnails', methods=['GET'])
|
||||||
@login_required
|
@login_required
|
||||||
def thumbnails():
|
def thumbnails():
|
||||||
|
Loading…
x
Reference in New Issue
Block a user