summary refs log tree commit diff
path: root/synapse/storage/__init__.py
diff options
context:
space:
mode:
authorTravis Ralston <travpc@gmail.com>2018-10-15 14:44:32 -0600
committerTravis Ralston <travpc@gmail.com>2018-10-15 14:44:32 -0600
commitf293d124b6494baba71c14591a265af551214d1c (patch)
treec2eabdc7431cd56f7a598e1915aa91da4f3f03b3 /synapse/storage/__init__.py
parentUpdate login terms structure for the proposed language support (diff)
parentMerge pull request #4019 from matrix-org/dbkr/e2e_backups (diff)
downloadsynapse-f293d124b6494baba71c14591a265af551214d1c.tar.xz
Merge branch 'develop' into travis/login-terms
Diffstat (limited to 'synapse/storage/__init__.py')
-rw-r--r--synapse/storage/__init__.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/synapse/storage/__init__.py b/synapse/storage/__init__.py

index 23b4a8d76d..53c685c173 100644 --- a/synapse/storage/__init__.py +++ b/synapse/storage/__init__.py
@@ -30,6 +30,7 @@ from .appservice import ApplicationServiceStore, ApplicationServiceTransactionSt from .client_ips import ClientIpStore from .deviceinbox import DeviceInboxStore from .directory import DirectoryStore +from .e2e_room_keys import EndToEndRoomKeyStore from .end_to_end_keys import EndToEndKeyStore from .engines import PostgresEngine from .event_federation import EventFederationStore @@ -77,6 +78,7 @@ class DataStore(RoomMemberStore, RoomStore, ApplicationServiceTransactionStore, ReceiptsStore, EndToEndKeyStore, + EndToEndRoomKeyStore, SearchStore, TagsStore, AccountDataStore,