mirror of
https://github.com/thecyberlearn/quantum-ai.git
synced 2026-08-18 14:53:00 +00:00
- 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>
11 lines
410 B
Python
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'),
|
|
] |