diff options
author | Dirk Klimpel <5740567+dklimpel@users.noreply.github.com> | 2021-08-19 11:25:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-19 10:25:05 +0100 |
commit | 220f901229a506a82aedc51c5923768bf935ea4f (patch) | |
tree | 41cd4de2dc3b06d84d7e2ed3e3a6aab873c0e6bf /docs | |
parent | Additional type hints for the proxy agent and SRV resolver modules. (#10608) (diff) | |
download | synapse-220f901229a506a82aedc51c5923768bf935ea4f.tar.xz |
Remove not needed database updates in modify user admin API (#10627)
Diffstat (limited to 'docs')
-rw-r--r-- | docs/admin_api/user_admin_api.md | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/docs/admin_api/user_admin_api.md b/docs/admin_api/user_admin_api.md index 6a9335d6ec..60dc913915 100644 --- a/docs/admin_api/user_admin_api.md +++ b/docs/admin_api/user_admin_api.md @@ -21,11 +21,15 @@ It returns a JSON body like the following: "threepids": [ { "medium": "email", - "address": "<user_mail_1>" + "address": "<user_mail_1>", + "added_at": 1586458409743, + "validated_at": 1586458409743 }, { "medium": "email", - "address": "<user_mail_2>" + "address": "<user_mail_2>", + "added_at": 1586458409743, + "validated_at": 1586458409743 } ], "avatar_url": "<avatar_url>", |