From 7cd11ca516ec4673e6358c1fd66c5ed63c8985f5 Mon Sep 17 00:00:00 2001 From: Johan Seto Kaiba <51926076+johanseto@users.noreply.github.com> Date: Wed, 21 Jan 2026 17:12:04 -0500 Subject: [PATCH] feat: configure proxy assets setting for scorm Based on https://github.com/overhangio/openedx-scorm-xblock/pull/100 Add PROXY_ASSETS_LMS setting to ScormXBlock --- drydock/patches/openedx-common-settings | 1 + 1 file changed, 1 insertion(+) diff --git a/drydock/patches/openedx-common-settings b/drydock/patches/openedx-common-settings index 47af825..20429b5 100644 --- a/drydock/patches/openedx-common-settings +++ b/drydock/patches/openedx-common-settings @@ -22,6 +22,7 @@ def scorm_xblock_storage(xblock): ) XBLOCK_SETTINGS["ScormXBlock"] = { "STORAGE_FUNC": scorm_xblock_storage, + "PROXY_ASSETS_LMS": False, } {% endif %}