mirror of
https://github.com/thecyberlearn/netcop-ai.git
synced 2026-08-18 08:53:01 +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>
13 lines
517 B
Python
13 lines
517 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
# Agent execution endpoints
|
|
path('execute/', views.execute_agent, name='execute_agent'),
|
|
path('executions/', views.get_agent_executions, name='agent_executions'),
|
|
path('executions/<uuid:execution_id>/', views.get_execution_detail, name='execution_detail'),
|
|
|
|
# Agent listing and details
|
|
path('list/', views.list_agents, name='list_agents'),
|
|
path('detail/<slug:slug>/', views.get_agent_detail, name='agent_api_detail'),
|
|
] |