From 91e357b4607ab15712642e3a15ce40ae036245f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9gis=20Behmo?= Date: Wed, 31 Jul 2019 13:11:22 +0200 Subject: [PATCH] Enable HTML certificates by default See this discussion https://discuss.overhang.io/t/how-to-generate-a-certificate-for-students/100/3 --- CHANGELOG.md | 4 ++++ tutor/templates/apps/openedx/config/cms.env.json | 1 + tutor/templates/apps/openedx/config/lms.env.json | 1 + 3 files changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index fa26088..4ad6d10 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ Note: Breaking changes between versions are indicated by "💥". +## Latest + +- [Bugfix] Enable html certificate view + ## 3.6.1 (2019-07-27) - [Bugfix] Fix missing patches from minio plugin (thanks @Wejie!) diff --git a/tutor/templates/apps/openedx/config/cms.env.json b/tutor/templates/apps/openedx/config/cms.env.json index dc75fec..6dec9d3 100644 --- a/tutor/templates/apps/openedx/config/cms.env.json +++ b/tutor/templates/apps/openedx/config/cms.env.json @@ -7,6 +7,7 @@ "PLATFORM_NAME": "{{ PLATFORM_NAME }}", "FEATURES": { {{ patch("common-env-features", separator=",\n", suffix=",")|indent(4) }} + "CERTIFICATES_HTML_VIEW": true, "PREVIEW_LMS_BASE": "preview.{{ LMS_HOST }}", "DISABLE_STUDIO_SSO_OVER_LMS": {{ "false" if ACTIVATE_HTTPS else "true" }}, "ENABLE_COURSEWARE_INDEX": true, diff --git a/tutor/templates/apps/openedx/config/lms.env.json b/tutor/templates/apps/openedx/config/lms.env.json index d959b36..14b0cda 100644 --- a/tutor/templates/apps/openedx/config/lms.env.json +++ b/tutor/templates/apps/openedx/config/lms.env.json @@ -7,6 +7,7 @@ "PLATFORM_NAME": "{{ PLATFORM_NAME }}", "FEATURES": { {{ patch("common-env-features", separator=",\n", suffix=",")|indent(4) }} + "CERTIFICATES_HTML_VIEW": true, "PREVIEW_LMS_BASE": "preview.{{ LMS_HOST }}", "ENABLE_COURSE_DISCOVERY": true, "ENABLE_COURSEWARE_SEARCH": true,