From 4551aea70d4479e1e11f5ef1d708913ac6c2fe9d Mon Sep 17 00:00:00 2001 From: Kyle D McCormick Date: Tue, 22 Apr 2025 18:05:07 -0400 Subject: [PATCH] feat: Install (sub)sections apps from openedx-learning --- cms/envs/common.py | 2 ++ lms/envs/common.py | 2 ++ 2 files changed, 4 insertions(+) diff --git a/cms/envs/common.py b/cms/envs/common.py index 07a4e2498e..787db40bd3 100644 --- a/cms/envs/common.py +++ b/cms/envs/common.py @@ -1863,6 +1863,8 @@ INSTALLED_APPS = [ "openedx_learning.apps.authoring.contents", "openedx_learning.apps.authoring.publishing", "openedx_learning.apps.authoring.units", + "openedx_learning.apps.authoring.subsections", + "openedx_learning.apps.authoring.sections", ] diff --git a/lms/envs/common.py b/lms/envs/common.py index 719e12fb8b..763bd83b9d 100644 --- a/lms/envs/common.py +++ b/lms/envs/common.py @@ -3361,6 +3361,8 @@ INSTALLED_APPS = [ "openedx_learning.apps.authoring.contents", "openedx_learning.apps.authoring.publishing", "openedx_learning.apps.authoring.units", + "openedx_learning.apps.authoring.subsections", + "openedx_learning.apps.authoring.sections", ]