refactor: remove deprecated sidebar toggles#37983
Merged
brian-smith-tcril merged 1 commit intoopenedx:masterfrom Feb 9, 2026
Merged
refactor: remove deprecated sidebar toggles#37983brian-smith-tcril merged 1 commit intoopenedx:masterfrom
brian-smith-tcril merged 1 commit intoopenedx:masterfrom
Conversation
3c1249e to
94a3c57
Compare
94a3c57 to
69465d4
Compare
Contributor
Author
69465d4 to
0bb0849
Compare
kdmccormick
approved these changes
Feb 9, 2026
Member
kdmccormick
left a comment
There was a problem hiding this comment.
Thank you! I did not manually test but I did grep for any dangling references and found none.
Could you tidy up the PR description before merging?
| "enable_navigation_sidebar": COURSEWARE_MICROFRONTEND_ENABLE_NAVIGATION_SIDEBAR.is_enabled(course_key), | ||
| "always_open_auxiliary_sidebar": COURSEWARE_MICROFRONTEND_ALWAYS_OPEN_AUXILIARY_SIDEBAR.is_enabled(course_key), | ||
| # Add completion tracking status for the sidebar use while a global place for switches is put in place | ||
| "enable_completion_tracking": ENABLE_COMPLETION_TRACKING_SWITCH.is_enabled() |
Member
There was a problem hiding this comment.
it's pretty silly to have a REST API just for as single switch. even siller that it's parameterized on the course_id while the switch is site-wide. it would make a lot more sense if this were a waffle flag which got fed to the MFE Config API. (no changes needed, not a problem for now--just writing down my thoughts while I'm here.)
Ardiea
added a commit
to mitodl/edx-platform
that referenced
this pull request
Feb 19, 2026
The behavior of the MariaDB backend has changed behavior for UUIDField from a `CharField(32)` to an actual `uuid` type. This is not converted automatically, which results in all writes to the affected columns to error with a message about the data being too long. This is because the actual string being written is a UUID with the `-` included, resulting in a 36 character value which can't be inserted into a 32 character column. fix: renamed migration to 0016 Update cms/djangoapps/contentstore/migrations/0016_mariadb_uuid_conversion.py Co-authored-by: David Ormsbee <dave@axim.org> refactor: remove deprecated sidebar toggles (openedx#37983) DEPR ticket: openedx/public-engineering#316 feat: Add Waffle flag for AuthZ for Course Authoring (openedx#37985) build: Upgrade to `ora2==6.17.2` which removes loremipsum base dep (openedx#37991) We hope this will fix an error where loremipsum is using pkg_resources, which setuptools dropped support for as of v82 (released yesterday). fix: Nits on styles of library icon [FC-0114] (openedx#37980) - Fixes the issues described in openedx/frontend-app-authoring#2762 (comment): - Changed the background color for the library icon in the unit page. - Update punctuation for the library icon tooltip in the unit page. - Allows breaking the tooltip into multiple lines. refactor: xblock api upstream info and course details api (openedx#37971) - Returns top parent key instead of boolean in upstream info api - Adds edited_on raw time in course outline api - Adds has_changes to course details api feat: Add enable_authz_course_authoring flag to course_waffle_flags endpoint (openedx#37990) Discussion service to enable permission and access provider (openedx#37912) * chore: discussion service to enable permission and access provider
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Description
This PR removes the sidebar toggles that have been deprecated. See
The learning MFE no longer uses these, and site operators can instead now customize this behavior by utilizing Frontend Plugin Framework slots. See
Testing instructions
I verified the Learning MFE renders properly and does not produce any API errors, both locally and in the PR sandbox.