diff options
author | Hubert Chathi <hubert@uhoreg.ca> | 2019-10-22 22:33:23 -0400 |
---|---|---|
committer | Hubert Chathi <hubert@uhoreg.ca> | 2019-10-22 22:33:23 -0400 |
commit | 404e8c85321b4fe9b9b74e07841367c4cf201551 (patch) | |
tree | 622a5a49d700c4455b184c5a2b5d5d9da4177e16 /synapse/handlers/e2e_keys.py | |
parent | fix unit test (diff) | |
download | synapse-404e8c85321b4fe9b9b74e07841367c4cf201551.tar.xz |
vendor-prefix the EDU name until MSC1756 is merged into the spec
Diffstat (limited to 'synapse/handlers/e2e_keys.py')
-rw-r--r-- | synapse/handlers/e2e_keys.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/synapse/handlers/e2e_keys.py b/synapse/handlers/e2e_keys.py index 73572f4614..d25af42f5f 100644 --- a/synapse/handlers/e2e_keys.py +++ b/synapse/handlers/e2e_keys.py @@ -55,8 +55,9 @@ class E2eKeysHandler(object): federation_registry = hs.get_federation_registry() + # FIXME: switch to m.signing_key_update when MSC1756 is merged into the spec federation_registry.register_edu_handler( - "m.signing_key_update", self._edu_updater.incoming_signing_key_update + "org.matrix.signing_key_update", self._edu_updater.incoming_signing_key_update ) # doesn't really work as part of the generic query API, because the # query request requires an object POST, but we abuse the |