mirror of
https://github.com/thecyberlearn/quantum-ai.git
synced 2026-08-18 12:33:00 +00:00
- 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>
20 lines
1.1 KiB
Python
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'),
|
|
] |