forked from CGM_Public/pretix_original
Stripe: Refund webhook implemented (#32)
This commit is contained in:
10
src/pretix/plugins/stripe/urls.py
Normal file
10
src/pretix/plugins/stripe/urls.py
Normal file
@@ -0,0 +1,10 @@
|
||||
from django.conf.urls import url, include
|
||||
|
||||
from .views import webhook
|
||||
|
||||
|
||||
urlpatterns = [
|
||||
url(r'^stripe/', include([
|
||||
url(r'^webhook/$', webhook, name='webhook'),
|
||||
])),
|
||||
]
|
||||
Reference in New Issue
Block a user