11 lines
174 B
Python
11 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"),
|
||
|
]
|