瀏覽代碼

Add API to get doc info by doc ids (#1986)

Supports use API to get doc info by doc ids

### What problem does this PR solve?

feat: Supports use API to get doc info by doc ids

### Type of change

- [x] New Feature (non-breaking change which adds functionality)

---------

Co-authored-by: Kevin Hu <kevinhu.sh@gmail.com>
tags/v0.10.0
wwwlll 1 年之前
父節點
當前提交
5a4e64e741
沒有連結到貢獻者的電子郵件帳戶。
共有 1 個檔案被更改,包括 13 行新增0 行删除
  1. 13
    0
      api/apps/api_app.py

+ 13
- 0
api/apps/api_app.py 查看文件

@@ -571,6 +571,19 @@ def list_kb_docs():
except Exception as e:
return server_error_response(e)

@manager.route('/document/infos', methods=['POST'])
@validate_request("doc_ids")
def docinfos():
token = request.headers.get('Authorization').split()[1]
objs = APIToken.query(token=token)
if not objs:
return get_json_result(
data=False, retmsg='Token is not valid!"', retcode=RetCode.AUTHENTICATION_ERROR)
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('/document', methods=['DELETE'])
# @login_required

Loading…
取消
儲存