File: //home/arjun/projects/aigenerator/AI-LG-backend/Ai_logo_generation/authorization/urls.py
from .views import signup,google_signup,login,refresh_token,password_reset,change_password,sent_or_ativate_acccount
from django.urls import path
# from rest_framework_simplejwt.views import TokenRefreshView
urlpatterns = [
path('signup/', signup.signup, name='signup'),
path('google-signup/', google_signup.google_signup, name='google_signup'),
path('login/', login.login, name='login'),
path('password-reset/', password_reset.password_reset_request, name='password_reset'),
path('password-reset-confirm/', password_reset.password_reset_confirm, name='password_reset_confirm'),
path('token/refresh/', refresh_token.CustomTokenRefreshView.as_view(), name='token_refresh'),
path('change-password/', change_password.change_password, name='change_password'),
path('activate/', sent_or_ativate_acccount.activate_account, name='activate_account'),
path('sent-verification-mail/', sent_or_ativate_acccount.sent_verification_mail, name='sent_verification_mail'),
path('verify-login/', sent_or_ativate_acccount.verify_login, name='verify_login'),
path('resent_otp_at_login/', login.handle_resent_otp_flow, name='resent_otp_at_login'),
]