Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Deprecate old admin API GET /_synapse/admin/v1/users/<user_id> #9429

Merged
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
Synapse 1.xx.0 (2021-xx-xx)
===========================

Removal warning
---------------

The old List Accounts API is deprecated and will be removed in a future release. They will be replaced by the
[List Accounts API](https://github.com/matrix-org/synapse/blob/master/docs/admin_api/user_admin_api.rst#list-accounts).

The new API is available since Synapse 1.7.0 (2019-12-13).

The old API has no documentation and unit tests. It is misleading.
It expects user_id and returns a list of all users.

`GET /_synapse/admin/v2/users` replaces `GET /_synapse/admin/v1/users/<user_id>`.
dklimpel marked this conversation as resolved.
Show resolved Hide resolved


Synapse 1.27.0 (2021-02-16)
===========================

Expand Down
1 change: 1 addition & 0 deletions changelog.d/9429.removal
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Deprecate old admin API `GET /_synapse/admin/v1/users/<user_id>`.