mirror of
https://github.com/thecyberlearn/quantum-ai.git
synced 2026-08-18 09:53:00 +00:00
✅ IMPROVEMENTS: - Changed transaction description from 'Manual Verification' to clean 'Wallet top-up via Stripe' - Removed confusing 'Verify Payment' button from wallet page - Removed manual verification modal and JavaScript - Removed manual verification URL endpoint - Cleaner, more professional user interface Result: Simple, automatic payment system that works seamlessly without user intervention. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
25 lines
1.5 KiB
Python
25 lines
1.5 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/debug/', views.stripe_debug_view, name='stripe_debug'),
|
|
path('stripe/webhook/', views.stripe_webhook_view, name='stripe_webhook'),
|
|
path('webhook-test/', views.webhook_test_view, name='webhook_test'),
|
|
path('stripe-webhook-test/', views.stripe_webhook_test_view, name='stripe_webhook_test'),
|
|
path('simple-webhook-test/', views.simple_webhook_test, name='simple_webhook_test'),
|
|
path('webhook-logs/', views.get_webhook_logs, name='webhook_logs'),
|
|
path('api/agents/', views.agents_api_view, name='agents_api'),
|
|
] |