23 lines
623 B
Python
23 lines
623 B
Python
from django.urls import path
|
|
|
|
from .file_summary.views import attachment_detail, attachments
|
|
|
|
|
|
urlpatterns = [
|
|
path(
|
|
"api/review-agent/conversations/<int:conversation_id>/attachments/",
|
|
attachments,
|
|
name="file_summary_attachment_upload",
|
|
),
|
|
path(
|
|
"api/review-agent/conversations/<int:conversation_id>/attachments/",
|
|
attachments,
|
|
name="file_summary_attachment_list",
|
|
),
|
|
path(
|
|
"api/review-agent/conversations/<int:conversation_id>/attachments/<int:attachment_id>/",
|
|
attachment_detail,
|
|
name="file_summary_attachment_detail",
|
|
),
|
|
]
|