Skip to content
Snippets Groups Projects
Commit 37827b5d authored by Dave St.Germain's avatar Dave St.Germain
Browse files

Include Zoom as a potential partner, for retirement requests

parent a9118131
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