mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-08-02 10:46:03 -04:00
Follow-up to admin API to re-activate accounts (#7908)
This commit is contained in:
parent
cc9bb3dc3f
commit
13d77464c9
3 changed files with 43 additions and 6 deletions
|
@ -70,11 +70,11 @@ class UserErasureWorkerStore(SQLBaseStore):
|
|||
|
||||
|
||||
class UserErasureStore(UserErasureWorkerStore):
|
||||
def mark_user_erased(self, user_id):
|
||||
def mark_user_erased(self, user_id: str) -> None:
|
||||
"""Indicate that user_id wishes their message history to be erased.
|
||||
|
||||
Args:
|
||||
user_id (str): full user_id to be erased
|
||||
user_id: full user_id to be erased
|
||||
"""
|
||||
|
||||
def f(txn):
|
||||
|
@ -89,3 +89,25 @@ class UserErasureStore(UserErasureWorkerStore):
|
|||
self._invalidate_cache_and_stream(txn, self.is_user_erased, (user_id,))
|
||||
|
||||
return self.db.runInteraction("mark_user_erased", f)
|
||||
|
||||
def mark_user_not_erased(self, user_id: str) -> None:
|
||||
"""Indicate that user_id is no longer erased.
|
||||
|
||||
Args:
|
||||
user_id: full user_id to be un-erased
|
||||
"""
|
||||
|
||||
def f(txn):
|
||||
# first check if they are already in the list
|
||||
txn.execute("SELECT 1 FROM erased_users WHERE user_id = ?", (user_id,))
|
||||
if not txn.fetchone():
|
||||
return
|
||||
|
||||
# They are there, delete them.
|
||||
self.simple_delete_one_txn(
|
||||
txn, "erased_users", keyvalues={"user_id": user_id}
|
||||
)
|
||||
|
||||
self._invalidate_cache_and_stream(txn, self.is_user_erased, (user_id,))
|
||||
|
||||
return self.db.runInteraction("mark_user_not_erased", f)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue