From 1301fa3fa246fdb5e56d6c06eaf78b9dff41c79a Mon Sep 17 00:00:00 2001 From: Arunmozhi Date: Tue, 17 Jun 2025 16:29:27 +1000 Subject: [PATCH] chore: upgrade Authoring MFE slot IDs to namespaced version Authoring MFE's slots were updated to use the namespaced ID format for all the slots in frontend-app-authoring PR#1854. This commit brings the latest IDs to the Authoring MFE patch and also upgrades the unit-page sidebar slot to the latest version - v2. --- tutoraspects/plugin.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/tutoraspects/plugin.py b/tutoraspects/plugin.py index ae212cd2d..afbc09893 100644 --- a/tutoraspects/plugin.py +++ b/tutoraspects/plugin.py @@ -687,7 +687,7 @@ def _mount_superset_compose( [ ( "authoring", - "course_authoring_outline_sidebar_slot", + "org.openedx.frontend.authoring.course_outline_sidebar.v1", """ { op: PLUGIN_OPERATIONS.Insert, @@ -701,7 +701,7 @@ def _mount_superset_compose( ), ( "authoring", - "course_authoring_outline_sidebar_slot", + "org.openedx.frontend.authoring.course_outline_sidebar.v1", """ { op: PLUGIN_OPERATIONS.Wrap, @@ -711,7 +711,7 @@ def _mount_superset_compose( ), ( "authoring", - "course_authoring_unit_sidebar_slot", + "org.openedx.frontend.authoring.course_unit_sidebar.v2", """ { op: PLUGIN_OPERATIONS.Insert, @@ -725,7 +725,7 @@ def _mount_superset_compose( ), ( "authoring", - "course_authoring_unit_sidebar_slot", + "org.openedx.frontend.authoring.course_unit_sidebar.v2", """ { op: PLUGIN_OPERATIONS.Wrap, @@ -735,7 +735,7 @@ def _mount_superset_compose( ), ( "authoring", - "course_unit_header_actions_slot", + "org.openedx.frontend.authoring.course_unit_header_actions.v1", """ { op: PLUGIN_OPERATIONS.Insert, @@ -749,7 +749,7 @@ def _mount_superset_compose( ), ( "authoring", - "course_outline_header_actions_slot", + "org.openedx.frontend.authoring.course_outline_header_actions.v1", """ { op: PLUGIN_OPERATIONS.Insert, @@ -763,7 +763,7 @@ def _mount_superset_compose( ), ( "authoring", - "course_outline_unit_card_extra_actions_slot", + "org.openedx.frontend.authoring.course_outline_unit_card_extra_actions.v1", """ { op: PLUGIN_OPERATIONS.Insert, @@ -777,7 +777,7 @@ def _mount_superset_compose( ), ( "authoring", - "course_outline_subsection_card_extra_actions_slot", + "org.openedx.frontend.authoring.course_outline_subsection_card_extra_actions.v1", """ { op: PLUGIN_OPERATIONS.Insert,