Skip to content
Snippets Groups Projects
Unverified Commit ab414c83 authored by Dave St.Germain's avatar Dave St.Germain Committed by GitHub
Browse files

Merge pull request #21391 from edx/dcs/report-for-zoom

Include Zoom as a potential partner, for retirement requests
parents 93a2259e 37827b5d
No related branches found
No related tags found
No related merge requests found
......@@ -526,6 +526,14 @@ class AccountRetirementPartnerReportView(ViewSet):
# Org can concievably be blank or this bogus default value
if org and org != 'outdated_entry':
orgs.add(org)
try:
# if the user has ever launched a managed Zoom xblock,
# we'll notify Zoom to delete their records.
if user.launchlog_set.filter(managed=True).count():
orgs.add('zoom')
except AttributeError:
# Zoom XBlock not installed
pass
return orgs
def retirement_partner_report(self, request): # pylint: disable=unused-argument
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment