feat: Initial commit
This commit is contained in:
commit
cfa40c6918
24 changed files with 669 additions and 0 deletions
10
pretix_congressschedule/urls.py
Normal file
10
pretix_congressschedule/urls.py
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
from django.urls import path
|
||||
from .api import CongressScheduleView
|
||||
|
||||
urlpatterns = [
|
||||
path(
|
||||
'api/v1/event/<str:organizer>/<str:event>/schedule.xml',
|
||||
CongressScheduleView.as_view(),
|
||||
name='schedule-xml',
|
||||
),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue