Merge pull request #1 from dklimpel/upgrade_dele_room

Use delete room API v2 (delete room in background)
This commit is contained in:
matrix07012 2022-01-29 12:18:56 +01:00 committed by GitHub
commit 6dbcd9cfe7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@
This project is built using [react-admin](https://marmelab.com/react-admin/).
It needs at least Synapse v1.41.0 for all functions to work as expected!
It needs at least Synapse v1.48.0 for all functions to work as expected!
You get your server version with the request `/_synapse/admin/v1/server_version`.
See also [Synapse version API](https://matrix-org.github.io/synapse/develop/admin_api/version_api.html).

View File

@ -69,7 +69,7 @@ const resourceMap = {
return json.total_rooms;
},
delete: params => ({
endpoint: `/_synapse/admin/v1/rooms/${params.id}`,
endpoint: `/_synapse/admin/v2/rooms/${params.id}`,
body: { block: false },
}),
},