feat: added tpv form view
This commit is contained in:
+2
-1
@@ -1,5 +1,5 @@
|
||||
from django.urls import path
|
||||
from tpv.views import transaction_created, webhook, payment_accepted, payment_rejected
|
||||
from tpv.views import transaction_created, webhook, payment_accepted, payment_rejected, payment_form
|
||||
|
||||
app_name = "tpv"
|
||||
|
||||
@@ -9,4 +9,5 @@ urlpatterns = [
|
||||
path("transaction/<str:transaction>/webhook/", webhook, name="webhook"),
|
||||
path("transaction/<str:transaction>/ok/", payment_accepted, name="ok"),
|
||||
path("transaction/<str:transaction>/ko/", payment_rejected, name="ko"),
|
||||
path("transaction/<str:transaction>/form/", payment_form, name="payment_form"),
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user