diff options
author | Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> | 2020-01-13 18:10:43 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-13 18:10:43 +0000 |
commit | 1177d3f3a33bd3ae1eef46fba360d319598359ad (patch) | |
tree | e7da27c7d951e4d902b38c1dcb8beb661b33b839 /docs/workers.md | |
parent | Document more supported endpoints for workers (#6698) (diff) | |
download | synapse-1177d3f3a33bd3ae1eef46fba360d319598359ad.tar.xz |
Quarantine media by ID or user ID (#6681)
Diffstat (limited to 'docs/workers.md')
-rw-r--r-- | docs/workers.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/workers.md b/docs/workers.md index f4283aeb05..0ab269fd96 100644 --- a/docs/workers.md +++ b/docs/workers.md @@ -202,7 +202,9 @@ Handles the media repository. It can handle all endpoints starting with: ... and the following regular expressions matching media-specific administration APIs: ^/_synapse/admin/v1/purge_media_cache$ - ^/_synapse/admin/v1/room/.*/media$ + ^/_synapse/admin/v1/room/.*/media.*$ + ^/_synapse/admin/v1/user/.*/media.*$ + ^/_synapse/admin/v1/media/.*$ ^/_synapse/admin/v1/quarantine_media/.*$ You should also set `enable_media_repo: False` in the shared configuration |