quantumtaskai-caprover/wallet/urls.py
thecyberlearn b0e8c917ef Initial clean CapRover deployment - no secrets
Complete Django AI agent marketplace with security optimizations
and clean deployment documentation without any API keys or secrets.

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

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-04 10:50:55 +05:30

14 lines
609 B
Python

from django.urls import path
from . import views
app_name = 'wallet'
urlpatterns = [
path('', views.wallet_view, name='wallet'),
path('topup/', views.wallet_topup_view, name='wallet_topup'),
path('top-up/success/', views.wallet_topup_success_view, name='wallet_topup_success'),
path('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/deduct/', views.wallet_deduct_api, name='wallet_deduct_api'),
]