mirror of
https://github.com/pretix/pretix.git
synced 2026-08-22 12:42:00 +00:00
Moved core plugins to the new URL API
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
from django.conf.urls import include, url
|
||||
|
||||
from .views import abort, success
|
||||
|
||||
event_patterns = [
|
||||
url(r'^paypal/', include([
|
||||
url(r'^abort/$', abort, name='abort'),
|
||||
url(r'^return/$', success, name='return'),
|
||||
])),
|
||||
]
|
||||
Reference in New Issue
Block a user