summary refs log tree commit diff
path: root/synapse/handlers
diff options
context:
space:
mode:
authorAndrew Morgan <1342360+anoadragon453@users.noreply.github.com>2019-11-28 10:40:42 +0000
committerGitHub <noreply@github.com>2019-11-28 10:40:42 +0000
commita9c44d4008deb29503e2de00e5aae1a56a72d630 (patch)
tree554b12c97ada0a2f8209b1cee8a1a5819e228acb /synapse/handlers
parentClarifications for the email configuration settings. (#6423) (diff)
downloadsynapse-a9c44d4008deb29503e2de00e5aae1a56a72d630.tar.xz
Remove local threepids on account deactivation (#6426)
Diffstat (limited to 'synapse/handlers')
-rw-r--r--synapse/handlers/deactivate_account.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/synapse/handlers/deactivate_account.py b/synapse/handlers/deactivate_account.py
index 63267a0a4c..6dedaaff8d 100644
--- a/synapse/handlers/deactivate_account.py
+++ b/synapse/handlers/deactivate_account.py
@@ -95,6 +95,9 @@ class DeactivateAccountHandler(BaseHandler):
                 user_id, threepid["medium"], threepid["address"]
             )
 
+        # Remove all 3PIDs this user has bound to the homeserver
+        yield self.store.user_delete_threepids(user_id)
+
         # delete any devices belonging to the user, which will also
         # delete corresponding access tokens.
         yield self._device_handler.delete_all_devices_for_user(user_id)