mirror of
https://github.com/thecyberlearn/netcop-ai.git
synced 2026-08-18 07:32:59 +00:00
- Add new Django apps: agents and frontend with URL routing - Configure static files and templates directories in settings - Add CSRF exemption and authentication to user endpoints - Switch Stripe currency from USD to AED - Add user management script and static assets - Include REST framework token authentication 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
9 lines
296 B
Python
9 lines
296 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('register/', views.register, name='register'),
|
|
path('login/', views.login_view, name='login'),
|
|
path('profile/', views.profile, name='profile'),
|
|
path('user/', views.profile, name='user'), # Alias for profile
|
|
] |