From 7e90306ffe41e0e7ee32eb48defe2f74741b19e9 Mon Sep 17 00:00:00 2001 From: Ahtisham Shahid Date: Thu, 17 Mar 2022 14:06:51 +0500 Subject: [PATCH] Ahtisham/fixed urls course live (#30083) * fix: removed traling / to avoid confusion --- openedx/core/djangoapps/course_live/urls.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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'), ]