diff options
author | Paul "LeoNerd" Evans <paul@matrix.org> | 2016-08-17 13:15:06 +0100 |
---|---|---|
committer | Paul "LeoNerd" Evans <paul@matrix.org> | 2016-08-17 16:17:28 +0100 |
commit | fa87c981e1efabe85a88144479b0dd7131b7da12 (patch) | |
tree | c7f91057f645e8c8f0d4a0e37b99ed1a75b7c613 /synapse/appservice/api.py | |
parent | Initial empty implementation that just registers an API endpoint handler (diff) | |
download | synapse-fa87c981e1efabe85a88144479b0dd7131b7da12.tar.xz |
Thread 3PU lookup through as far as the AS API object; which currently noöps it
Diffstat (limited to 'synapse/appservice/api.py')
-rw-r--r-- | synapse/appservice/api.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/synapse/appservice/api.py b/synapse/appservice/api.py index 6da6a1b62e..6e5f7dc404 100644 --- a/synapse/appservice/api.py +++ b/synapse/appservice/api.py @@ -71,6 +71,9 @@ class ApplicationServiceApi(SimpleHttpClient): logger.warning("query_alias to %s threw exception %s", uri, ex) defer.returnValue(False) + def query_3pu(self, service, protocol, fields): + return False + @defer.inlineCallbacks def push_bulk(self, service, events, txn_id=None): events = self._serialize(events) |