fix: endpoint path fixed

This commit is contained in:
2025-08-07 11:07:59 +05:00
parent e40bced16b
commit 09a418aae9
3 changed files with 3 additions and 6 deletions

View File

@@ -55,7 +55,7 @@ urlpatterns: list[object] = [
name="contract-owners-api-view"
),
path(
r"/contract-owners/<uuid:owner_id>/files/<uuid:file_id>",
r"/contracts/<uuid:pk>/files",
views.ContractAttachedFileApiView.as_view(),
name="contract-attached-files-api-view"
)