summary refs log tree commit diff
path: root/synapse/rest/media/upload_resource.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Asynchronous Uploads (#15503)Sumner Evans2023-11-151-7/+68
| | | Support asynchronous uploads as defined in MSC2246.
* Register media servlets via regex. (#16419)Patrick Cloke2023-10-061-8/+6
| | | | | This converts the media servlet URLs in the same way as (most) of the rest of Synapse. This will give more flexibility in the versions each endpoint exists under.
* Remove some unused `server_name` fields (#15723)Sean Quah2023-06-061-1/+0
| | | Signed-off-by: Sean Quah <seanq@matrix.org>
* Refactor media modules. (#15146)Patrick Cloke2023-02-271-0/+108
* 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.