summary refs log tree commit diff
diff options
context:
space:
mode:
authorMark Haines <mark.haines@matrix.org>2016-05-31 17:08:10 +0100
committerMark Haines <mark.haines@matrix.org>2016-05-31 17:08:10 +0100
commit3ca8216f7e101db367723a03ee61fa91e0c9b139 (patch)
tree7ff6e489b86e64c2b16227e1ca17a5cb5869e54f
parentMerge branch 'develop' into markjh/synchrotron (diff)
downloadsynapse-3ca8216f7e101db367723a03ee61fa91e0c9b139.tar.xz
Stub out the AS handler
-rw-r--r--synapse/app/synchrotron.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/synapse/app/synchrotron.py b/synapse/app/synchrotron.py
index 6a0592f41d..3875d0de23 100644
--- a/synapse/app/synchrotron.py
+++ b/synapse/app/synchrotron.py
@@ -156,6 +156,11 @@ class SynchrotronTyping(object):
     _room_serials = ()
 
 
+class SynchrotronApplicationService(object):
+    def notify_interested_services(self, event):
+        pass
+
+
 class SynchrotronServer(HomeServer):
     def get_db_conn(self, run_new_connection=True):
         # Any param beginning with cp_ is a parameter for adbapi, and should
@@ -294,6 +299,7 @@ def setup(config_options):
         database_engine=database_engine,
         presence_handler=SynchrotronPresence(),
         typing_handler=SynchrotronTyping(),
+        application_service_handler=SynchrotronApplicationService(),
     )
 
     ss.setup()