diff options
author | Hillery Shay <shaysquared@gmail.com> | 2021-10-04 08:34:42 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-04 08:34:42 -0700 |
commit | eda8c88b84ee7506379a71ac2a7a88c08b759d43 (patch) | |
tree | 1dfeec3c492e176d1029c6e668e4355f7c44a000 /synapse/handlers/deactivate_account.py | |
parent | Make is_public Optional[bool] for create_room_as test util (#10951) (#10963) (diff) | |
download | synapse-eda8c88b84ee7506379a71ac2a7a88c08b759d43.tar.xz |
Add functionality to remove deactivated users from the monthly_active_users table (#10947)
* add test * add function to remove user from monthly active table in deactivate code * add function to remove user from monthly active table * add changelog entry * update changelog number * requested changes * update docstring on new function * fix lint error * Update synapse/storage/databases/main/monthly_active_users.py Co-authored-by: Richard van der Hoff <1389908+richvdh@users.noreply.github.com> Co-authored-by: Richard van der Hoff <1389908+richvdh@users.noreply.github.com>
Diffstat (limited to 'synapse/handlers/deactivate_account.py')
-rw-r--r-- | synapse/handlers/deactivate_account.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/synapse/handlers/deactivate_account.py b/synapse/handlers/deactivate_account.py index 9ae5b7750e..12bdca7445 100644 --- a/synapse/handlers/deactivate_account.py +++ b/synapse/handlers/deactivate_account.py @@ -133,6 +133,10 @@ class DeactivateAccountHandler(BaseHandler): # delete from user directory await self.user_directory_handler.handle_local_user_deactivated(user_id) + # If the user is present in the monthly active users table + # remove them + await self.store.remove_deactivated_user_from_mau_table(user_id) + # Mark the user as erased, if they asked for that if erase_data: user = UserID.from_string(user_id) |