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:
@@ -1,10 +0,0 @@
|
||||
from django.conf.urls import include, url
|
||||
|
||||
from .views import abort, success
|
||||
|
||||
urlpatterns = [
|
||||
url(r'^(?P<organizer>[^/]+)/(?P<event>[^/]+)/paypal/', include([
|
||||
url(r'^abort/$', abort, name='abort'),
|
||||
url(r'^return/$', success, name='return'),
|
||||
])),
|
||||
]
|
||||
@@ -2,8 +2,8 @@ from django.conf.urls import include, url
|
||||
|
||||
from .views import abort, success
|
||||
|
||||
urlpatterns = [
|
||||
url(r'^(?P<event>[^/]+)/paypal/', include([
|
||||
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