fix: Updated course live docs url (#30293)

This commit is contained in:
Ahtisham Shahid
2022-04-22 19:04:12 +05:00
committed by GitHub
parent 93c5fdf735
commit 446392bf6a
2 changed files with 3 additions and 2 deletions

View File

@@ -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"

View File

@@ -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