From 9589c43a4956af1c0b02e59d9100af387abef028 Mon Sep 17 00:00:00 2001 From: Feanil Patel Date: Fri, 14 Feb 2025 14:52:55 -0500 Subject: [PATCH] build: Add more apps to the set of installed apps. These app models get pulled in when trying to build the OpenAPI docs so we need their relevant apps installed into the environment used to generate the docs. --- docs/docs_settings.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/docs_settings.py b/docs/docs_settings.py index d5164edfa1..3b4cafed85 100644 --- a/docs/docs_settings.py +++ b/docs/docs_settings.py @@ -38,6 +38,13 @@ INSTALLED_APPS.extend( "cms.djangoapps.xblock_config.apps.XBlockConfig", "lms.djangoapps.lti_provider", "openedx.core.djangoapps.content.search", + "openedx.core.djangoapps.content_libraries", + "openedx.core.djangoapps.content_staging", + "openedx.core.djangoapps.bookmarks", + "openedx.core.djangoapps.discussions", + "openedx.core.djangoapps.theming", + "lms.djangoapps.program_enrollments", + "push_notifications", ] )