From 502b6fe34b09c7342d26d2fa81843c7171e67c3f Mon Sep 17 00:00:00 2001 From: Deborah Kaplan Date: Mon, 27 Oct 2025 17:01:25 +0000 Subject: [PATCH] feat: display the reset toggles for a report One retirement partner status report admin toggle has being renamed, and another has been added. This PR displays them on the appropriate django admin page. --- openedx/core/djangoapps/user_api/admin.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/openedx/core/djangoapps/user_api/admin.py b/openedx/core/djangoapps/user_api/admin.py index f68d9f3e7dad..228a9a5bc451 100644 --- a/openedx/core/djangoapps/user_api/admin.py +++ b/openedx/core/djangoapps/user_api/admin.py @@ -170,7 +170,8 @@ class UserRetirementPartnerReportingStatusAdmin(admin.ModelAdmin): raw_id_fields = ('user',) search_fields = ('user__id', 'original_username', 'original_email', 'original_name') actions = [ - 'reset_state', # See reset_state() below. + 'reset_state_false', + 'reset_state_true', ] class Meta: