forked-synapse/synapse/rest/admin
Dirk Klimpel 491f0dab1b
Add delete room admin endpoint (#7613)
The Delete Room admin API allows server admins to remove rooms from server
and block these rooms.
`DELETE /_synapse/admin/v1/rooms/<room_id>`
It is a combination and improvement of "[Shutdown room](https://github.com/matrix-org/synapse/blob/develop/docs/admin_api/shutdown_room.md)" and "[Purge room](https://github.com/matrix-org/synapse/blob/develop/docs/admin_api/purge_room.md)" API.

Fixes: #6425 

It also fixes a bug in [synapse/storage/data_stores/main/room.py](synapse/storage/data_stores/main/room.py) in ` get_room_with_stats`.
It should return `None` if the room is unknown. But it returns an `IndexError`.
901b1fa561/synapse/storage/data_stores/main/room.py (L99-L105)

Related to:
- #5575
- https://github.com/Awesome-Technologies/synapse-admin/issues/17

Signed-off-by: Dirk Klimpel dirk@klimpel.org
2020-07-14 12:36:23 +01:00
..
__init__.py Add delete room admin endpoint (#7613) 2020-07-14 12:36:23 +01:00
_base.py Fix type information on assert_*_is_admin methods (#7645) 2020-06-05 14:33:49 +01:00
devices.py Add device management to admin API (#7481) 2020-06-05 13:07:22 +01:00
groups.py Move admin endpoints into separate files (#6308) 2019-11-20 11:49:11 +00:00
media.py Fix and add test to deprecated quarantine media admin api (#6756) 2020-01-22 11:05:50 +00:00
purge_room_servlet.py Remove unnecessary parentheses around return statements (#5931) 2019-08-30 16:28:26 +01:00
rooms.py Add delete room admin endpoint (#7613) 2020-07-14 12:36:23 +01:00
server_notice_servlet.py Port synaps/rest/client/server_notice_servlet.py to async/await 2019-10-11 12:21:40 +01:00
users.py Replace all remaining six usage with native Python 3 equivalents (#7704) 2020-06-16 08:51:47 -04:00