Actualizacion la compra con logs logs correspondientes
This commit is contained in:
+4
-2
@@ -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'
|
||||
|
||||
Reference in New Issue
Block a user