From 446392bf6a4883d36c23d033e9b40dcd9fe2f1ff Mon Sep 17 00:00:00 2001 From: Ahtisham Shahid Date: Fri, 22 Apr 2022 19:04:12 +0500 Subject: [PATCH] fix: Updated course live docs url (#30293) --- cms/envs/common.py | 1 + openedx/core/djangoapps/course_live/plugins.py | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/cms/envs/common.py b/cms/envs/common.py index b21e07ee99..16f34a0845 100644 --- a/cms/envs/common.py +++ b/cms/envs/common.py @@ -2658,3 +2658,4 @@ TEAMS_HELP_URL = "https://edx.readthedocs.io/projects/open-edx-building-and-runn TEXTBOOKS_HELP_URL = "https://edx.readthedocs.io/projects/open-edx-building-and-running-a-course/en/latest/course_assets/textbooks.html" WIKI_HELP_URL = "https://edx.readthedocs.io/projects/open-edx-building-and-running-a-course/en/latest/course_assets/course_wiki.html" CUSTOM_PAGES_HELP_URL = "https://edx.readthedocs.io/projects/open-edx-building-and-running-a-course/en/latest/course_assets/pages.html#adding-custom-pages" +COURSE_LIVE_HELP_URL = "https://edx.readthedocs.io/projects/edx-partner-course-staff/en/latest/course_assets/course_live.html" diff --git a/openedx/core/djangoapps/course_live/plugins.py b/openedx/core/djangoapps/course_live/plugins.py index 6a95cdab22..4ef546a228 100644 --- a/openedx/core/djangoapps/course_live/plugins.py +++ b/openedx/core/djangoapps/course_live/plugins.py @@ -2,6 +2,7 @@ Course app configuration for live. """ from typing import Dict, Optional +from django.conf import settings from django.contrib.auth import get_user_model from django.utils.translation import gettext_noop as _ @@ -25,8 +26,7 @@ class LiveCourseApp(CourseApp): name = _("Live") description = _("Enable in-platform video conferencing by configuring live") documentation_links = { - # TODO: add the actual documentation link once it exists - "learn_more_configuration": '', + "learn_more_configuration": settings.COURSE_LIVE_HELP_URL } @classmethod