Actualizacion la compra con logs logs correspondientes

This commit is contained in:
adevopg
2025-02-18 11:11:47 +01:00
parent 162f4bf828
commit e94915e667
19 changed files with 321 additions and 87 deletions
+4 -2
View File
@@ -1,6 +1,6 @@
from django.urls import path
from . import views
from .views import home_view, download_client_view, content_creators_view
from .views import home_view, download_client_view, content_creators_view, stripe_webhook
urlpatterns = [
path('', views.home_view, name='index'), # Ruta para la página principal
@@ -71,7 +71,9 @@ urlpatterns = [
path('restore-character/', views.restore_character_view, name='restore-character'),
path('restore-items/', views.restore_items_view, name='restore-items'),
path('quest-character/', views.quest_character_view, name='quest-character'),
path('send-gift/', views.send_gift_view, name='send-gift'),
path('send-gift/', views.send_gift_view, name='send-gift'),
path("webhook/stripe/", stripe_webhook, name="stripe-webhook"),
]
handler404 = 'home.views.not_found'