feat: changed TPV behaviour

This commit is contained in:
Pablo Moreno
2025-01-12 22:40:46 +01:00
parent fc0cdad246
commit a733325529
43 changed files with 1036 additions and 1100 deletions
+5 -1
View File
@@ -1,6 +1,10 @@
from django.urls import path
from shop.views import webhook
app_name = "shop"
urlpatterns = []
urlpatterns = [
path("order/<str:uuid>/webhook/", webhook, name="webhook"),
]