mirror of
https://github.com/thecyberlearn/quantum-ai-v2.git
synced 2026-08-18 14:12:59 +00:00
🧹 CLEANUP COMPLETED: Removed unused testing/debugging code: - Wallet demo system (views, templates, URLs) - Webhook testing system (views, templates, URLs) - Manual payment verification (orphaned function) - External testing scripts - Cleaned up URL routes Kept essential production code: - Core wallet functionality - Payment flow (topup, success, cancel) - Stripe debug endpoint (for troubleshooting) - Main Stripe webhook handler Result: ~500+ lines of unused code removed, cleaner production codebase. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
18 lines
891 B
Python
18 lines
891 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
app_name = 'core'
|
|
|
|
urlpatterns = [
|
|
path('', views.homepage_view, name='homepage'),
|
|
path('marketplace/', views.marketplace_view, name='marketplace'),
|
|
path('pricing/', views.pricing_view, name='pricing'),
|
|
path('agents/<slug:agent_slug>/', views.agent_detail_view, name='agent_detail'),
|
|
path('wallet/', views.wallet_view, name='wallet'),
|
|
path('wallet/topup/', views.wallet_topup_view, name='wallet_topup'),
|
|
path('wallet/top-up/success/', views.wallet_topup_success_view, name='wallet_topup_success'),
|
|
path('wallet/top-up/cancel/', views.wallet_topup_cancel_view, name='wallet_topup_cancel'),
|
|
path('stripe/debug/', views.stripe_debug_view, name='stripe_debug'),
|
|
path('stripe/webhook/', views.stripe_webhook_view, name='stripe_webhook'),
|
|
path('api/agents/', views.agents_api_view, name='agents_api'),
|
|
] |