diff options
author | Mark Haines <mark.haines@matrix.org> | 2016-05-31 17:08:10 +0100 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2016-05-31 17:08:10 +0100 |
commit | 3ca8216f7e101db367723a03ee61fa91e0c9b139 (patch) | |
tree | 7ff6e489b86e64c2b16227e1ca17a5cb5869e54f | |
parent | Merge branch 'develop' into markjh/synchrotron (diff) | |
download | synapse-3ca8216f7e101db367723a03ee61fa91e0c9b139.tar.xz |
Stub out the AS handler
-rw-r--r-- | synapse/app/synchrotron.py | 6 |
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() |