mirror of
https://github.com/thecyberlearn/quantum-ai.git
synced 2026-08-18 18:33:00 +00:00
- Restrict file upload to PDF files only in frontend and backend - Add comprehensive PDF MIME type validation - Remove duplicate processing view and URL endpoint - Update model help text and UI labels for PDF-only - Clean up unused imports and code references - Maintain rich results formatting with HTML rendering - Preserve all existing webhook processing functionality 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
10 lines
316 B
Python
10 lines
316 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
app_name = 'data_analyzer'
|
|
|
|
urlpatterns = [
|
|
path('', views.data_analyzer_detail, name='detail'),
|
|
path('status/<uuid:request_id>/', views.data_analyzer_status, name='status'),
|
|
path('result/<uuid:request_id>/', views.data_analyzer_result, name='result'),
|
|
] |