diff --git a/changelog.d/20260903_102500_ahmed.khalid_flatten_features_settings.md b/changelog.d/20260903_102500_ahmed.khalid_flatten_features_settings.md new file mode 100644 index 0000000..570bbc3 --- /dev/null +++ b/changelog.d/20260903_102500_ahmed.khalid_flatten_features_settings.md @@ -0,0 +1 @@ +- [Bugfix] Set `ENABLE_EDXNOTES` as a flat Django setting instead of a `FEATURES` key, which edx-platform no longer reads from downstream settings modules. (by @ahmed-arb) diff --git a/tutornotes/patches/openedx-common-settings b/tutornotes/patches/openedx-common-settings index 417ce24..034a346 100644 --- a/tutornotes/patches/openedx-common-settings +++ b/tutornotes/patches/openedx-common-settings @@ -1,2 +1,2 @@ # Student notes -FEATURES["ENABLE_EDXNOTES"] = True +ENABLE_EDXNOTES = True