mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-05 19:39:02 +00:00
Fix: Resolve typo in /list route function (#8769)
### What problem does this PR solve? Fixes a function name typo for the `/list` route in `api/apps/conversation_app.py`. ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
parent
8281ceb406
commit
512772c45a
@ -161,7 +161,7 @@ def rm():
|
|||||||
|
|
||||||
@manager.route("/list", methods=["GET"]) # noqa: F821
|
@manager.route("/list", methods=["GET"]) # noqa: F821
|
||||||
@login_required
|
@login_required
|
||||||
def list_convsersation():
|
def list_conversation():
|
||||||
dialog_id = request.args["dialog_id"]
|
dialog_id = request.args["dialog_id"]
|
||||||
try:
|
try:
|
||||||
if not DialogService.query(tenant_id=current_user.id, id=dialog_id):
|
if not DialogService.query(tenant_id=current_user.id, id=dialog_id):
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user