Adds urls.py
This commit is contained in:
parent
f932841cda
commit
79fa80ea33
1 changed files with 10 additions and 0 deletions
10
registripe/urls.py
Normal file
10
registripe/urls.py
Normal 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"),
|
||||
]
|
Loading…
Reference in a new issue