summary refs log tree commit diff
path: root/synapse/storage/registration.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2016-06-30 15:40:58 +0100
committerErik Johnston <erik@matrix.org>2016-06-30 15:40:58 +0100
commitf328d95cef99763d056171846253ed68cab58214 (patch)
tree199bef20aca0ca594d234ff61c16ab44e46be91f /synapse/storage/registration.py
parentMerge pull request #902 from matrix-org/erikj/expire_media (diff)
downloadsynapse-f328d95cef99763d056171846253ed68cab58214.tar.xz
Feature: Add deactivate account admin API
Allows server admins to "deactivate" accounts, which:

- Revokes all access tokens
- Removes all threepids
- Removes password

The API is a POST to `/admin/deactivate/<user_id>`
Diffstat (limited to 'synapse/storage/registration.py')
-rw-r--r--synapse/storage/registration.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/synapse/storage/registration.py b/synapse/storage/registration.py
index 3de9e0f709..5c75dbab51 100644
--- a/synapse/storage/registration.py
+++ b/synapse/storage/registration.py
@@ -384,6 +384,15 @@ class RegistrationStore(SQLBaseStore):
             defer.returnValue(ret['user_id'])
         defer.returnValue(None)
 
+    def user_delete_threepids(self, user_id):
+        return self._simple_delete(
+            "user_threepids",
+            keyvalues={
+                "user_id": user_id,
+            },
+            desc="user_delete_threepids",
+        )
+
     @defer.inlineCallbacks
     def count_all_users(self):
         """Counts all users registered on the homeserver."""