fix: Updated course live docs url (#30293)
This commit is contained in:
@@ -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"
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user