From e423bfc1baddd82f1027169319b3ab7aa182b6cc Mon Sep 17 00:00:00 2001 From: henrrypg Date: Fri, 1 Nov 2024 08:54:59 -0500 Subject: [PATCH] fixup! fix: rename course authoring --- tutormfe_extensions/patches/openedx-cms-production-settings | 2 +- tutormfe_extensions/patches/openedx-lms-production-settings | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tutormfe_extensions/patches/openedx-cms-production-settings b/tutormfe_extensions/patches/openedx-cms-production-settings index fe3de03..633cfe0 100644 --- a/tutormfe_extensions/patches/openedx-cms-production-settings +++ b/tutormfe_extensions/patches/openedx-cms-production-settings @@ -1,5 +1,5 @@ {%- if MFE_EXTENSIONS_BY_PATH %} {%- if get_mfe("authoring") %} -AUTHORING_MICROFRONTEND_URL = "{% if ENABLE_HTTPS %}https{% else %}http{% endif %}://{{ CMS_HOST }}/authoring" +COURSE_AUTHORING_MICROFRONTEND_URL = "{% if ENABLE_HTTPS %}https{% else %}http{% endif %}://{{ CMS_HOST }}/authoring" {%- endif %} {%- endif %} diff --git a/tutormfe_extensions/patches/openedx-lms-production-settings b/tutormfe_extensions/patches/openedx-lms-production-settings index 40d3abd..5f6424b 100644 --- a/tutormfe_extensions/patches/openedx-lms-production-settings +++ b/tutormfe_extensions/patches/openedx-lms-production-settings @@ -39,7 +39,7 @@ COMMUNICATIONS_MICROFRONTEND_URL = "{% if ENABLE_HTTPS %}https{% else %}http{% e {% endif %} {% if get_mfe("authoring") %} -MFE_CONFIG["AUTHORING_MICROFRONTEND_URL"] = "{% if ENABLE_HTTPS %}https://{% else %}http://{% endif %}{{ LMS_HOST }}/authoring" +MFE_CONFIG["COURSE_AUTHORING_MICROFRONTEND_URL"] = "{% if ENABLE_HTTPS %}https://{% else %}http://{% endif %}{{ LMS_HOST }}/authoring" {% endif %} CORS_ORIGIN_WHITELIST.append("{% if ENABLE_HTTPS %}https://{% else %}http://{% endif %}{{ CMS_HOST }}")