add party list api

This commit is contained in:
behruz-dev
2025-08-21 14:47:15 +05:00
parent 9e391f1c45
commit 74e3e7a03c
5 changed files with 59 additions and 5 deletions

View File

@@ -28,6 +28,7 @@ urlpatterns = [
path('party/', include(
[
path('create/', party_views.PartyCreateApiView.as_view()),
path('list/', party_views.PartyListApiView.as_view()),
]
)),
]