mirror of
https://github.com/i701/sarlink-portal-api.git
synced 2025-07-16 14:05:49 +00:00
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
All checks were successful
Build and Push Docker Images / Build and Push Docker Images (push) Successful in 4m9s
This commit is contained in:
@ -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"),
|
||||
|
Reference in New Issue
Block a user