diff --git a/openedx/core/djangoapps/course_live/urls.py b/openedx/core/djangoapps/course_live/urls.py index 5d46c17701..62dc06a2b6 100644 --- a/openedx/core/djangoapps/course_live/urls.py +++ b/openedx/core/djangoapps/course_live/urls.py @@ -9,8 +9,8 @@ from django.urls import re_path from openedx.core.djangoapps.course_live.views import CourseLiveConfigurationView, CourseLiveProvidersView urlpatterns = [ - re_path(fr'^course/{settings.COURSE_ID_PATTERN}/$', + re_path(fr'^course/{settings.COURSE_ID_PATTERN}/?$', CourseLiveConfigurationView.as_view(), name='course_live'), - re_path(fr'^providers/{settings.COURSE_ID_PATTERN}/$', + re_path(fr'^providers/{settings.COURSE_ID_PATTERN}/?$', CourseLiveProvidersView.as_view(), name='live_providers'), ]