symposion_app/registripe/urls.py
Christopher Neugebauer 79fa80ea33 Adds urls.py
2016-09-21 10:41:02 +10:00

10 lines
174 B
Python

from django.conf.urls import url
from pinax.stripe.views import (
Webhook,
)
urlpatterns = [
url(r"^webhook/$", Webhook.as_view(), name="pinax_stripe_webhook"),
]