diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2018-07-31 13:44:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-31 13:44:04 +0100 |
commit | 5de936caa1c1d607c39b09909ee983568e31ebb1 (patch) | |
tree | 2ef87b37cdef97b54375d575216dd60039d31d1b /synapse/storage/__init__.py | |
parent | Merge pull request #3629 from ptman/patch-1 (diff) | |
parent | reinstate explicit include of EventsWorkerStore (diff) | |
download | synapse-5de936caa1c1d607c39b09909ee983568e31ebb1.tar.xz |
Merge pull request #3612 from matrix-org/rav/store_heirarchy
Make EventStore inherit from EventFederationStore
Diffstat (limited to 'synapse/storage/__init__.py')
-rw-r--r-- | synapse/storage/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/__init__.py b/synapse/storage/__init__.py index ba88a54979..3bd63cd195 100644 --- a/synapse/storage/__init__.py +++ b/synapse/storage/__init__.py @@ -66,6 +66,7 @@ class DataStore(RoomMemberStore, RoomStore, PresenceStore, TransactionStore, DirectoryStore, KeyStore, StateStore, SignatureStore, ApplicationServiceStore, + EventsStore, EventFederationStore, MediaRepositoryStore, RejectionsStore, @@ -73,7 +74,6 @@ class DataStore(RoomMemberStore, RoomStore, PusherStore, PushRuleStore, ApplicationServiceTransactionStore, - EventsStore, ReceiptsStore, EndToEndKeyStore, SearchStore, |