mirror of
https://github.com/pretix/pretix.git
synced 2026-05-05 15:14:04 +00:00
Moved core plugins to the new URL API
This commit is contained in:
9
src/pretix/plugins/stripe/urls.py
Normal file
9
src/pretix/plugins/stripe/urls.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from django.conf.urls import include, url
|
||||
|
||||
from .views import webhook
|
||||
|
||||
urlpatterns = [
|
||||
url(r'^stripe/', include([
|
||||
url(r'^webhook/$', webhook, name='webhook'),
|
||||
])),
|
||||
]
|
||||
Reference in New Issue
Block a user