quantum-ai-v3/authentication/urls.py
Claude e8ade314a6 🔧 Remove email verification system and update event URL
- Remove email_verified field from User model
- Delete EmailVerificationToken model and related views
- Update registration to auto-login users without verification
- Change event URL from /event-invitation/ to /event/
- Update Railway deployment configuration
- Remove email verification templates and URLs

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-16 12:35:26 +05:30

13 lines
496 B
Python

from django.urls import path
from . import views
app_name = 'authentication'
urlpatterns = [
path('login/', views.login_view, name='login'),
path('register/', views.register_view, name='register'),
path('logout/', views.logout_view, name='logout'),
path('profile/', views.profile_view, name='profile'),
path('forgot-password/', views.forgot_password_view, name='forgot_password'),
path('reset-password/<uuid:token>/', views.reset_password_view, name='reset_password'),
]