2020-01-26 10:53:25 +00:00
|
|
|
from django.urls import path
|
|
|
|
|
2020-02-07 14:57:30 +00:00
|
|
|
from payment.views import StatusView, StripeRedirectView, StripeRedirectJSView, callback
|
2020-01-26 10:53:25 +00:00
|
|
|
|
|
|
|
app_name = "payment"
|
|
|
|
|
|
|
|
urlpatterns = [
|
|
|
|
path('<uuid:pk>/status/', StatusView.as_view(), name="status"),
|
|
|
|
path('<uuid:pk>/redirect_stripe/', StripeRedirectView.as_view(), name="redirect_stripe"),
|
2020-02-07 14:57:30 +00:00
|
|
|
path('<uuid:pk>/redirect_stripe/redirect.js', StripeRedirectJSView.as_view(), name="redirect_stripe_js"),
|
|
|
|
path('<uuid:pk>/callback/', callback, name="callback"),
|
|
|
|
|
2020-01-26 10:53:25 +00:00
|
|
|
]
|