diff --git a/CHANGELOG.md b/CHANGELOG.md index a86d510..c484cbd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ Note: Breaking changes between versions are indicated by "💥". ## Unreleased +- [Bugfix] Fix course about page visibility - [Improvement] Print gunicorn access logs in the console - 💥[Improvement] Get rid of the `indexcourses` and `portainer` command (#269) diff --git a/tutor/templates/apps/openedx/settings/partials/common_lms.py b/tutor/templates/apps/openedx/settings/partials/common_lms.py index a268f83..64078d7 100644 --- a/tutor/templates/apps/openedx/settings/partials/common_lms.py +++ b/tutor/templates/apps/openedx/settings/partials/common_lms.py @@ -21,6 +21,8 @@ GRADES_DOWNLOAD = { }, } +COURSE_CATALOG_VISIBILITY_PERMISSION = "see_in_catalog" +COURSE_ABOUT_VISIBILITY_PERMISSION = "see_about_page" # JWT is authentication for other openedx services JWT_AUTH["JWT_ISSUER"] = "{{ JWT_COMMON_ISSUER }}"