fix(file-summary): 同步压缩包工作流状态与结果刷新
This commit is contained in:
@@ -1,6 +1,13 @@
|
||||
from django.urls import path
|
||||
|
||||
from .file_summary.views import attachment_detail, attachments, batch_events, batch_status, export_download
|
||||
from .file_summary.views import (
|
||||
attachment_detail,
|
||||
attachments,
|
||||
batch_events,
|
||||
batch_status,
|
||||
conversation_messages,
|
||||
export_download,
|
||||
)
|
||||
|
||||
|
||||
urlpatterns = [
|
||||
@@ -19,6 +26,11 @@ urlpatterns = [
|
||||
attachment_detail,
|
||||
name="file_summary_attachment_detail",
|
||||
),
|
||||
path(
|
||||
"api/review-agent/conversations/<int:conversation_id>/messages/",
|
||||
conversation_messages,
|
||||
name="review_agent_conversation_messages",
|
||||
),
|
||||
path(
|
||||
"api/review-agent/file-summary/<int:batch_id>/status/",
|
||||
batch_status,
|
||||
|
||||
Reference in New Issue
Block a user