summary refs log tree commit diff
path: root/synapse/handlers/__init__.py
diff options
context:
space:
mode:
authorMark Haines <mark.haines@matrix.org>2015-01-26 18:53:31 +0000
committerMark Haines <mark.haines@matrix.org>2015-01-26 18:53:31 +0000
commit436513068de73ab47d9ba9a32046420be3d86588 (patch)
tree07fb90a26067ed1f015ff77aa659d9a9d3104b8d /synapse/handlers/__init__.py
parentMerge branch 'develop' into client_v2_sync (diff)
downloadsynapse-436513068de73ab47d9ba9a32046420be3d86588.tar.xz
Start implementing the non-incremental sync portion of the v2 /sync 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 fe071a4bc2..a32eab9316 100644
--- a/synapse/handlers/__init__.py
+++ b/synapse/handlers/__init__.py
@@ -26,6 +26,7 @@ from .presence import PresenceHandler
 from .directory import DirectoryHandler
 from .typing import TypingNotificationHandler
 from .admin import AdminHandler
+from .sync import SyncHandler
 
 
 class Handlers(object):
@@ -51,3 +52,4 @@ class Handlers(object):
         self.directory_handler = DirectoryHandler(hs)
         self.typing_notification_handler = TypingNotificationHandler(hs)
         self.admin_handler = AdminHandler(hs)
+        self.sync_handler = SyncHandler(hs)