summary refs log tree commit diff
path: root/synapse/server.py
diff options
context:
space:
mode:
authorShay <hillerys@element.io>2024-10-29 11:50:13 -0700
committerGitHub <noreply@github.com>2024-10-29 13:50:13 -0500
commit58deef5eba68c24987c6b2d95d397ee023a1c6ec (patch)
tree1919e05d32ad7a5dbfc09541a7b5461ca7b8f7a2 /synapse/server.py
parentFix check for outdated Rust library (#17861) (diff)
downloadsynapse-58deef5eba68c24987c6b2d95d397ee023a1c6ec.tar.xz
Add admin handler to list of handlers used for background tasks (#17847)
Fixes #17823

While we're at it, makes a change where the redactions are sent as the
admin if the user is not a member of the server (otherwise these fail
with a "User must be our own" message).
Diffstat (limited to 'synapse/server.py')
-rw-r--r--synapse/server.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/server.py b/synapse/server.py

index 318c6abf3d..c7b4918813 100644 --- a/synapse/server.py +++ b/synapse/server.py
@@ -249,6 +249,7 @@ class HomeServer(metaclass=abc.ABCMeta): """ REQUIRED_ON_BACKGROUND_TASK_STARTUP = [ + "admin", "account_validity", "auth", "deactivate_account",