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

@ -10,7 +10,7 @@ from rest_framework import routers
router = routers.SimpleRouter()
"""API End points with router"""
router.register('profile-update', UpdateJuniorProfile, basename='profile-update')
router.register('complete-junior-profile', UpdateJuniorProfile, basename='profile-update')
router.register('validate-guardian-code', ValidateGuardianCode, basename='validate-guardian-code')
urlpatterns = [
path('api/v1/', include(router.urls)),