Add filter_temporary_user view to retrieve TemporaryUser by id_card or mobile
All checks were successful
Build and Push Docker Images / Build and Push Docker Images (push) Successful in 3m32s

This commit is contained in:
2025-04-18 13:39:57 +05:00
parent ac5675e923
commit 887ffbb4d0
2 changed files with 28 additions and 0 deletions

View File

@ -17,6 +17,7 @@ from .views import (
ListCreateIslandView,
RetrieveUpdateDestroyIslandView,
filter_user,
filter_temporary_user,
UpdateUserWalletView,
VerifyOTPView,
)
@ -37,6 +38,7 @@ urlpatterns = [
),
path("users/<int:pk>/", UserDetailAPIView.as_view(), name="user-detail"),
path("users/filter/", filter_user, name="filter-users"),
path("users/temp/filter/", filter_temporary_user, name="filter-temporary-users"),
path("healthcheck/", healthcheck, name="healthcheck"),
path("test/", test_email, name="testemail"),
path("atolls/", ListAtollView.as_view(), name="atolls"),