mirror of
https://github.com/pretix/pretix.git
synced 2025-12-05 21:32:28 +00:00
Add missing file
This commit is contained in:
31
src/tests/testdummy/urls.py
Normal file
31
src/tests/testdummy/urls.py
Normal file
@@ -0,0 +1,31 @@
|
||||
from django.http import HttpResponse
|
||||
from django.urls import path
|
||||
|
||||
|
||||
def view(request):
|
||||
return HttpResponse("")
|
||||
|
||||
|
||||
urlpatterns = [
|
||||
path(
|
||||
"testdummy",
|
||||
view,
|
||||
name="view",
|
||||
),
|
||||
]
|
||||
|
||||
organizer_patterns = [
|
||||
path(
|
||||
"testdummy",
|
||||
view,
|
||||
name="view",
|
||||
),
|
||||
]
|
||||
|
||||
event_patterns = [
|
||||
path(
|
||||
"testdummy",
|
||||
view,
|
||||
name="view",
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user