forgot, reset and change password

This commit is contained in:
jain
2023-06-26 10:38:49 +05:30
parent 89982f851f
commit 9db620d818
7 changed files with 51 additions and 13 deletions

View File

@ -11,7 +11,7 @@ router = routers.SimpleRouter()
"""API End points with router"""
router.register('sign-up', SignupViewset, basename='sign-up')
router.register('update-guardian-profile', UpdateGuardianProfile, basename='update-guardian-profile')
router.register('complete-guardian-profile', UpdateGuardianProfile, basename='update-guardian-profile')
urlpatterns = [
path('api/v1/', include(router.urls)),
]