summary refs log tree commit diff
path: root/synapse/handlers/__init__.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2015-10-09 15:48:31 +0100
committerErik Johnston <erik@matrix.org>2015-10-09 15:48:31 +0100
commitc85c9125627a62c73711786723be12be30d7a81e (patch)
treee5d32fb9a3f90a764ce3bbe89b5f8e0f619205bc /synapse/handlers/__init__.py
parentMerge pull request #292 from matrix-org/daniel/useragent (diff)
downloadsynapse-c85c9125627a62c73711786723be12be30d7a81e.tar.xz
Add basic full text search impl.
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)