summary refs log tree commit diff
path: root/synapse/handlers/__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/handlers/__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/handlers/__init__.py')
-rw-r--r--synapse/handlers/__init__.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/synapse/handlers/__init__.py b/synapse/handlers/__init__.py
index 8725c3c420..87b4d381c7 100644
--- a/synapse/handlers/__init__.py
+++ b/synapse/handlers/__init__.py
@@ -32,6 +32,7 @@ from .sync import SyncHandler
 from .auth import AuthHandler
 from .identity import IdentityHandler
 from .receipts import ReceiptsHandler
+from .search import SearchHandler
 
 
 class Handlers(object):
@@ -68,3 +69,4 @@ class Handlers(object):
         self.sync_handler = SyncHandler(hs)
         self.auth_handler = AuthHandler(hs)
         self.identity_handler = IdentityHandler(hs)
+        self.search_handler = SearchHandler(hs)