Skip to content

Commit 4d3509a

Browse files
added talk endpoint (#1362)
1 parent 3ba8c33 commit 4d3509a

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

app/eventyay/multidomain/maindomain_urlconf.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
locale_patterns,
2727
organizer_patterns,
2828
)
29+
from eventyay.cfp.views.event import EventStartpage
2930

3031
BASE_DIR = os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))
3132
WEBAPP_DIST_DIR = os.path.normpath(os.path.join(BASE_DIR, 'static', 'webapp'))
@@ -228,6 +229,7 @@ def get(self, request, path='', *args, **kwargs):
228229
name='video.assets.file',
229230
),
230231
re_path(r'^video(?:/.*)?$', VideoSPAView.as_view(), name='video.spa'),
232+
re_path(r'^talk/?$', EventStartpage.as_view(), name='event.talk'),
231233
path('', include(('eventyay.agenda.urls', 'agenda'))),
232234
path('', include(('eventyay.cfp.urls', 'cfp'))),
233235
]

0 commit comments

Comments
 (0)