diff options
author | Shay <hillerys@element.io> | 2023-07-27 15:08:46 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-27 15:08:46 -0700 |
commit | 68b2611783ab00fdad567654a95492442722c106 (patch) | |
tree | 861bbfac98f7b0352e8b01eb46a941da4ed2e6a6 /synapse | |
parent | Fix 404 on /profile when the display name is empty but not the avatar (#16012) (diff) | |
download | synapse-68b2611783ab00fdad567654a95492442722c106.tar.xz |
Clarify comment on key uploads over replication (#16016)
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/replication/http/devices.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/replication/http/devices.py b/synapse/replication/http/devices.py index f874f072f9..73f3de3642 100644 --- a/synapse/replication/http/devices.py +++ b/synapse/replication/http/devices.py @@ -107,8 +107,7 @@ class ReplicationUploadKeysForUserRestServlet(ReplicationEndpoint): Calls to e2e_keys_handler.upload_keys_for_user(user_id, device_id, keys) on the main process to accomplish this. - Defined in https://spec.matrix.org/v1.4/client-server-api/#post_matrixclientv3keysupload - Request format(borrowed and expanded from KeyUploadServlet): + Request format for this endpoint (borrowed and expanded from KeyUploadServlet): POST /_synapse/replication/upload_keys_for_user @@ -117,6 +116,7 @@ class ReplicationUploadKeysForUserRestServlet(ReplicationEndpoint): "device_id": "<device_id>", "keys": { ....this part can be found in KeyUploadServlet in rest/client/keys.py.... + or as defined in https://spec.matrix.org/v1.4/client-server-api/#post_matrixclientv3keysupload } } |