forked from CGM_Public/pretix_original
10 lines
182 B
Python
10 lines
182 B
Python
from django.conf.urls import include, url
|
|
|
|
from .views import webhook
|
|
|
|
urlpatterns = [
|
|
url(r'^stripe/', include([
|
|
url(r'^webhook/$', webhook, name='webhook'),
|
|
])),
|
|
]
|