feat: Drop support for the legacy Course Team page.#38421
Draft
irfanuddinahmad wants to merge 1 commit intomasterfrom
Draft
feat: Drop support for the legacy Course Team page.#38421irfanuddinahmad wants to merge 1 commit intomasterfrom
irfanuddinahmad wants to merge 1 commit intomasterfrom
Conversation
8624bbe to
8f7d53c
Compare
The legacy Course Team page in Studio has been replaced with a new view in the Authoring MFE. This change removes the now unused JS/HTML/Python related to the old page. This work is part of #36108 BREAKING CHANGE: The 'legacy_studio.course_team' waffle flag will no longer be respected. The system will behave as if the flag is set to false permanently.
8f7d53c to
8b1b427
Compare
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.
This pull request removes the legacy "Manage Users" (course team management) page and its associated backend and frontend code from Studio. Now, all requests to manage course teams will be redirected to the new course team page. The key changes are as follows:
Removal of legacy course team management:
_manage_usersview and all logic to render the old "manage_users.html" page fromcms/djangoapps/contentstore/views/user.py.manage_users.htmlMako template, which defined the UI for the old course team management page.manage_users.jsJavaScript factory, which powered the interactive user management experience on the legacy page.Routing and import cleanup:
course_team_handlerview to always redirect to the new course team page, removing the feature toggle and legacy path.cms/djangoapps/contentstore/views/user.pyby removing unused imports related to the legacy implementation.