feat!: Removes XML endpoint and adds fields for German and English tour details

This commit is contained in:
Vincent Mahnke 2026-01-04 15:03:22 +01:00
commit f5e32a6649
Signed by: ViMaSter
GPG key ID: 6D787326BA7D6469
4 changed files with 119 additions and 229 deletions

View file

@ -1,12 +1,7 @@
from django.urls import path
from .api import CongressScheduleXMLView, CongressScheduleJSONView, HackertoursMarkdownView
from .api import CongressScheduleJSONView, HackertoursMarkdownView
urlpatterns = [
path(
'api/v1/event/<str:organizer>/<str:event>/schedule.xml',
CongressScheduleXMLView.as_view(),
name='schedule-xml',
),
path(
'api/v1/event/<str:organizer>/<str:event>/schedule.json',
CongressScheduleJSONView.as_view(),