quantum-ai/core/urls.py
Claude 0714ec21e5 Add comprehensive Stripe webhook testing demo page
- Created /wallet/demo/ page for testing Stripe payment integration
- Real-time balance monitoring and transaction logging
- Interactive payment testing with amount selection
- Live webhook status monitoring and debugging logs
- AJAX-powered balance refresh and payment creation
- Visual indicators for webhook connectivity status
- Detailed session ID and payment link display

This demo page will help debug webhook delivery issues and test
the complete payment flow from session creation to balance updates.

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

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-12 14:51:08 +05:30

20 lines
1.1 KiB
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('wallet/demo/', views.wallet_demo_view, name='wallet_demo'),
path('wallet/demo/test-payment/', views.wallet_demo_test_payment, name='wallet_demo_test_payment'),
path('wallet/demo/check-balance/', views.wallet_demo_check_balance, name='wallet_demo_check_balance'),
path('stripe/webhook/', views.stripe_webhook_view, name='stripe_webhook'),
path('api/agents/', views.agents_api_view, name='agents_api'),
]