summary refs log tree commit diff
path: root/synapse/handlers/__init__.py
diff options
context:
space:
mode:
authorKegan Dougal <kegan@matrix.org>2015-01-27 15:50:28 +0000
committerKegan Dougal <kegan@matrix.org>2015-01-27 15:50:28 +0000
commit51449e06654c4af7a645124dc64e1f0cc1678b24 (patch)
tree3141bc69fba6f1e6088f9f5b496845e2aa6c9637 /synapse/handlers/__init__.py
parentParse /register and /unregister request JSON. (diff)
downloadsynapse-51449e06654c4af7a645124dc64e1f0cc1678b24.tar.xz
Add appservice handler and store. Glue together rest > handler > store.
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..96a9b143ca 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 .appservice import ApplicationServicesHandler
 
 
 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.appservice_handler = ApplicationServicesHandler(hs)