mirror of
https://github.com/thecyberlearn/quantumtaskai-caprover.git
synced 2026-08-18 16:52:56 +00:00
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>
14 lines
609 B
Python
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'),
|
|
] |