diff options
author | Mark Haines <mark.haines@matrix.org> | 2014-08-28 18:19:47 +0100 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2014-08-28 18:19:47 +0100 |
commit | d7ae9b90a0f6da37076ff6d754ef52bf1eff3635 (patch) | |
tree | 4180265a6a9dd0c0ed63176b92e7c931df21af8a /synapse/storage/__init__.py | |
parent | Do a smart update of the recents from the events stream rather than hammering... (diff) | |
download | synapse-d7ae9b90a0f6da37076ff6d754ef52bf1eff3635.tar.xz |
Add store for server certificates and keys
Diffstat (limited to 'synapse/storage/__init__.py')
-rw-r--r-- | synapse/storage/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/synapse/storage/__init__.py b/synapse/storage/__init__.py index e8faba3eeb..3ad6f3a4d6 100644 --- a/synapse/storage/__init__.py +++ b/synapse/storage/__init__.py @@ -33,6 +33,7 @@ from .roommember import RoomMemberStore from .stream import StreamStore from .pdu import StatePduStore, PduStore from .transactions import TransactionStore +from .keys import KeyStore import json import logging @@ -45,7 +46,7 @@ logger = logging.getLogger(__name__) class DataStore(RoomMemberStore, RoomStore, RegistrationStore, StreamStore, ProfileStore, FeedbackStore, PresenceStore, PduStore, StatePduStore, TransactionStore, - DirectoryStore): + DirectoryStore, KeyStore): def __init__(self, hs): super(DataStore, self).__init__(hs) |