feat(file-summary): 接入文件汇总工作流触发
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
from django.urls import path
|
||||
|
||||
from .file_summary.views import attachment_detail, attachments
|
||||
from .file_summary.views import attachment_detail, attachments, batch_events, batch_status
|
||||
|
||||
|
||||
urlpatterns = [
|
||||
@@ -19,4 +19,14 @@ urlpatterns = [
|
||||
attachment_detail,
|
||||
name="file_summary_attachment_detail",
|
||||
),
|
||||
path(
|
||||
"api/review-agent/file-summary/<int:batch_id>/status/",
|
||||
batch_status,
|
||||
name="file_summary_batch_status",
|
||||
),
|
||||
path(
|
||||
"api/review-agent/file-summary/<int:batch_id>/events/",
|
||||
batch_events,
|
||||
name="file_summary_batch_events",
|
||||
),
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user