diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2020-07-08 17:51:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-08 17:51:56 +0100 |
commit | 67593b17287ae5e412c3d30db64d006d3b55349b (patch) | |
tree | 773814cef2383b03bed077e207dbabe25d843d80 /synapse/groups | |
parent | Revert "Update the installation docs on apt-transport-https (#7801)" (diff) | |
download | synapse-67593b17287ae5e412c3d30db64d006d3b55349b.tar.xz |
Add `HomeServer.signing_key` property (#7805)
... instead of duplicating `config.signing_key[0]` everywhere
Diffstat (limited to 'synapse/groups')
-rw-r--r-- | synapse/groups/attestations.py | 2 | ||||
-rw-r--r-- | synapse/groups/groups_server.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/synapse/groups/attestations.py b/synapse/groups/attestations.py index 27b0c02655..dab13c243f 100644 --- a/synapse/groups/attestations.py +++ b/synapse/groups/attestations.py @@ -70,7 +70,7 @@ class GroupAttestationSigning(object): self.keyring = hs.get_keyring() self.clock = hs.get_clock() self.server_name = hs.hostname - self.signing_key = hs.config.signing_key[0] + self.signing_key = hs.signing_key @defer.inlineCallbacks def verify_attestation(self, attestation, group_id, user_id, server_name=None): diff --git a/synapse/groups/groups_server.py b/synapse/groups/groups_server.py index 8db8ab1b7b..8cb922ddc7 100644 --- a/synapse/groups/groups_server.py +++ b/synapse/groups/groups_server.py @@ -41,7 +41,7 @@ class GroupsServerWorkerHandler(object): self.clock = hs.get_clock() self.keyring = hs.get_keyring() self.is_mine_id = hs.is_mine_id - self.signing_key = hs.config.signing_key[0] + self.signing_key = hs.signing_key self.server_name = hs.hostname self.attestations = hs.get_groups_attestation_signing() self.transport_client = hs.get_federation_transport_client() |