diff options
author | Dirk Klimpel <5740567+dklimpel@users.noreply.github.com> | 2021-04-09 10:44:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-09 09:44:40 +0100 |
commit | 48a1f4db313026c79fbc7d9d950175693368d98b (patch) | |
tree | ea9511a5ad971e9d8755fcb8dbaf40f86351d85e /tests | |
parent | Bugbear: Add Mutable Parameter fixes (#9682) (diff) | |
download | synapse-48a1f4db313026c79fbc7d9d950175693368d98b.tar.xz |
Remove old admin API `GET /_synapse/admin/v1/users/<user_id>` (#9401)
Related: #8334 Deprecated in: #9429 - Synapse 1.28.0 (2021-02-25) `GET /_synapse/admin/v1/users/<user_id>` has no - unit tests - documentation API in v2 is available (#5925 - 12/2019, v1.7.0). API is misleading. It expects `user_id` and returns a list of all users. Signed-off-by: Dirk Klimpel dirk@klimpel.org
Diffstat (limited to 'tests')
-rw-r--r-- | tests/storage/test_client_ips.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/storage/test_client_ips.py b/tests/storage/test_client_ips.py index 34e6526097..a8a6ddc466 100644 --- a/tests/storage/test_client_ips.py +++ b/tests/storage/test_client_ips.py @@ -390,7 +390,7 @@ class ClientIpStoreTestCase(unittest.HomeserverTestCase): class ClientIpAuthTestCase(unittest.HomeserverTestCase): servlets = [ - synapse.rest.admin.register_servlets_for_client_rest_resource, + synapse.rest.admin.register_servlets, login.register_servlets, ] @@ -434,7 +434,7 @@ class ClientIpAuthTestCase(unittest.HomeserverTestCase): self.reactor, self.site, "GET", - "/_synapse/admin/v1/users/" + self.user_id, + "/_synapse/admin/v2/users/" + self.user_id, access_token=access_token, custom_headers=headers1.items(), **make_request_args, |