add: add new api for counterparty folder

This commit is contained in:
behruz-dev
2025-09-09 15:14:50 +05:00
parent e98e40a3c7
commit 4f023b5c4b
2 changed files with 18 additions and 2 deletions

View File

@@ -21,6 +21,7 @@ urlpatterns = [
path('create/', folder_views.CounterpartyCreateApiView.as_view()),
path('<uuid:id>/delete/', folder_views.CounterpartyDeleteApiView.as_view()),
path('<uuid:id>/update/', folder_views.CounterpartyUpdateApiView.as_view()),
path('<uuid:folder_id>/counterparty/list/', cp_views.FolderCounterpartyListApiView.as_view()),
]
))
]