summary refs log tree commit diff
path: root/synapse/storage/__init__.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2015-10-19 13:37:15 +0100
committerErik Johnston <erik@matrix.org>2015-10-19 13:37:15 +0100
commite0bf0258eeef08bac0930652a3557fddc1021659 (patch)
treed23be2d3097493e190a0c320528a730d99e9f20d /synapse/storage/__init__.py
parentMerge pull request #313 from matrix-org/paul/tiny-fixes (diff)
parentExplicitly check for Sqlite3Engine (diff)
downloadsynapse-e0bf0258eeef08bac0930652a3557fddc1021659.tar.xz
Merge pull request #307 from matrix-org/erikj/search
Add basic search API
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 48a0633746..a1bd9c4ce9 100644
--- a/synapse/storage/__init__.py
+++ b/synapse/storage/__init__.py
@@ -40,6 +40,7 @@ from .filtering import FilteringStore
 from .end_to_end_keys import EndToEndKeyStore
 
 from .receipts import ReceiptsStore
+from .search import SearchStore
 
 
 import logging
@@ -69,6 +70,7 @@ class DataStore(RoomMemberStore, RoomStore,
                 EventsStore,
                 ReceiptsStore,
                 EndToEndKeyStore,
+                SearchStore,
                 ):
 
     def __init__(self, hs):