furry/paypal_integration/urls.py

10 lines
338 B
Python

from django.urls import path
from . import views
app_name = 'paypal'
urlpatterns = [
path('process/<int:order_id>/', views.process_payment, name='process_payment'),
path('execute/<int:order_id>/', views.execute_payment, name='execute_payment'),
path('cancel/<int:order_id>/', views.cancel_payment, name='cancel_payment'),
]