summary refs log tree commit diff
path: root/synapse/handlers/deactivate_account.py
diff options
context:
space:
mode:
authorWill Hunt <will@half-shot.uk>2021-09-24 14:04:06 +0100
committerWill Hunt <will@half-shot.uk>2021-09-24 14:04:06 +0100
commitba449705d1ffcc7acb439267af5c5356d79ffee1 (patch)
treeea123543b40b097685a2d3af9fdb8b3c81ececc2 /synapse/handlers/deactivate_account.py
parentSetup synthetic_events structure (diff)
downloadsynapse-hs/as-synthetic-events.tar.xz
Diffstat (limited to 'synapse/handlers/deactivate_account.py')
-rw-r--r--synapse/handlers/deactivate_account.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/synapse/handlers/deactivate_account.py b/synapse/handlers/deactivate_account.py

index 9ae5b7750e..5324d9573c 100644 --- a/synapse/handlers/deactivate_account.py +++ b/synapse/handlers/deactivate_account.py
@@ -38,6 +38,7 @@ class DeactivateAccountHandler(BaseHandler): self._room_member_handler = hs.get_room_member_handler() self._identity_handler = hs.get_identity_handler() self._profile_handler = hs.get_profile_handler() + self._application_service_handler = hs.get_application_service_handler() self.user_directory_handler = hs.get_user_directory_handler() self._server_name = hs.hostname @@ -159,6 +160,16 @@ class DeactivateAccountHandler(BaseHandler): # Mark the user as deactivated. await self.store.set_user_deactivated_status(user_id, True) + + # Inform interested appservices + self._application_service_handler.notify_synthetic_event( + "m.user.deactivated", + user_id, + { + "user_id": user_id, + } + ) + return identity_server_supports_unbinding async def _reject_pending_invites_for_user(self, user_id: str) -> None: