diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2021-01-15 11:18:09 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-15 11:18:09 -0500 |
commit | 3e4cdfe5d9b6152b9a0b7f7ad22623c2bf19f7ff (patch) | |
tree | 43158bf0c147a5a2e8174c8ba29067a02cef490d /docs | |
parent | Avoid raising the body exceeded error multiple times. (#9108) (diff) | |
download | synapse-3e4cdfe5d9b6152b9a0b7f7ad22623c2bf19f7ff.tar.xz |
Add an admin API endpoint to protect media. (#9086)
Protecting media stops it from being quarantined when e.g. all media in a room is quarantined. This is useful for sticker packs and other media that is uploaded by server administrators, but used by many people.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/admin_api/media_admin_api.md | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/docs/admin_api/media_admin_api.md b/docs/admin_api/media_admin_api.md index dfb8c5d751..90faeaaef0 100644 --- a/docs/admin_api/media_admin_api.md +++ b/docs/admin_api/media_admin_api.md @@ -4,6 +4,7 @@ * [Quarantining media by ID](#quarantining-media-by-id) * [Quarantining media in a room](#quarantining-media-in-a-room) * [Quarantining all media of a user](#quarantining-all-media-of-a-user) + * [Protecting media from being quarantined](#protecting-media-from-being-quarantined) - [Delete local media](#delete-local-media) * [Delete a specific local media](#delete-a-specific-local-media) * [Delete local media by date or size](#delete-local-media-by-date-or-size) @@ -123,6 +124,29 @@ The following fields are returned in the JSON response body: * `num_quarantined`: integer - The number of media items successfully quarantined +## Protecting media from being quarantined + +This API protects a single piece of local media from being quarantined using the +above APIs. This is useful for sticker packs and other shared media which you do +not want to get quarantined, especially when +[quarantining media in a room](#quarantining-media-in-a-room). + +Request: + +``` +POST /_synapse/admin/v1/media/protect/<media_id> + +{} +``` + +Where `media_id` is in the form of `abcdefg12345...`. + +Response: + +```json +{} +``` + # Delete local media This API deletes the *local* media from the disk of your own server. This includes any local thumbnails and copies of media downloaded from |