Add missing file

This commit is contained in:
Raphael Michel
2025-12-04 16:57:27 +01:00
parent 3dc59249f2
commit 2846c864fd

View 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",
),
]