1
0

Track deactivated accounts in the database (#5378)

This commit is contained in:
Andrew Morgan
2020-02-10 15:08:10 +00:00

View File

@@ -121,6 +121,9 @@ class DeactivateAccountHandler(BaseHandler):
# parts users from rooms (if it isn't already running)
self._start_user_parting()
# Mark the user as deactivated.
yield self.store.set_user_deactivated_status(user_id, True)
# Remove all information on the user from the account_validity table.
if self._account_validity_enabled:
yield self.store.delete_account_validity_for_user(user_id)