feat(user): add user update endpoint with authorization checks and serializer support
All checks were successful
Build and Push Docker Images / Build and Push Docker Images (push) Successful in 4m9s

This commit is contained in:
2025-07-11 19:55:25 +05:00
parent 72c2ea1ecc
commit ff065fa4a9
3 changed files with 49 additions and 0 deletions

View File

@ -21,6 +21,7 @@ from .views import (
UpdateUserWalletView,
VerifyOTPView,
UserVerifyAPIView,
UserUpdateAPIView,
)
@ -39,6 +40,7 @@ urlpatterns = [
),
path("users/<int:pk>/", UserDetailAPIView.as_view(), name="user-detail"),
path("users/<int:pk>/verify/", UserVerifyAPIView.as_view(), name="user-verify"),
path("users/<int:pk>/update/", UserUpdateAPIView.as_view(), name="user-update"),
path("users/filter/", filter_user, name="filter-users"),
path("users/temp/filter/", filter_temporary_user, name="filter-temporary-users"),
path("healthcheck/", healthcheck, name="healthcheck"),