quantum-ai-v3/weather_reporter/urls.py
Claude f40450851b Fix agent network errors and remove debug logging
- Fix social ads generator updateWalletBalance function call
- Fix weather reporter form submission URL and syntax errors
- Add missing status endpoints for polling functionality
- Remove debug logging from all agents
- Clean up button styling consistency

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

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-14 00:56:14 +05:30

11 lines
410 B
Python

from django.urls import path
from . import views
app_name = 'weather_reporter'
urlpatterns = [
path('', views.weather_reporter_detail, name='detail'),
path('process/', views.WeatherReporterProcessView.as_view(), name='process'),
path('status/<uuid:request_id>/', views.weather_reporter_status, name='status'),
path('result/<uuid:request_id>/', views.weather_reporter_result, name='result'),
]