Adds urls.py

This commit is contained in:
Christopher Neugebauer 2016-09-21 10:41:02 +10:00
parent f932841cda
commit 79fa80ea33

10
registripe/urls.py Normal file
View file

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