summary refs log tree commit diff
path: root/synapse/media/media_repository.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Gracefully handle failing to thumbnail images (#16211)Erik Johnston2023-08-301-1/+4
|
* Add tracing to media `/upload` endpoint (#15850)Eric Eastwood2023-07-051-0/+3
| | | Add tracing instrumentation to media `/upload` code paths to investigate https://github.com/matrix-org/synapse/issues/15841
* Add config option to prevent media downloads from listed domains. (#15197)Travis Ralston2023-05-091-0/+9
| | | | | | | This stops media (and thumbnails) from being accessed from the listed domains. It does not delete any already locally cached media, but will prevent accessing it. Note that admin APIs are unaffected by this change.
* Refactor media modules. (#15146)Patrick Cloke2023-02-271-0/+1038
* Removes the `v1` directory from `test.rest.media.v1`. * Moves the non-REST code from `synapse.rest.media.v1` to `synapse.media`. * Flatten the `v1` directory from `synapse.rest.media`, but leave compatiblity with 3rd party media repositories and spam checkers.