summary refs log tree commit diff
path: root/synapse/appservice
diff options
context:
space:
mode:
authorPaul "LeoNerd" Evans <paul@matrix.org>2016-08-17 13:15:06 +0100
committerPaul "LeoNerd" Evans <paul@matrix.org>2016-08-17 16:17:28 +0100
commitfa87c981e1efabe85a88144479b0dd7131b7da12 (patch)
treec7f91057f645e8c8f0d4a0e37b99ed1a75b7c613 /synapse/appservice
parentInitial empty implementation that just registers an API endpoint handler (diff)
downloadsynapse-fa87c981e1efabe85a88144479b0dd7131b7da12.tar.xz
Thread 3PU lookup through as far as the AS API object; which currently noöps it
Diffstat (limited to 'synapse/appservice')
-rw-r--r--synapse/appservice/api.py3
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)