summary refs log tree commit diff
path: root/synapse/appservice
diff options
context:
space:
mode:
authorPaul "LeoNerd" Evans <paul@matrix.org>2016-08-25 15:45:28 +0100
committerPaul "LeoNerd" Evans <paul@matrix.org>2016-08-25 15:45:28 +0100
commitd0b8d49f714dca232f8a970e31042686ea82b982 (patch)
treea57d8e92d03edb680c9f48b25bb7b58d6ede6ceb /synapse/appservice
parentActually query over AS API for 3PE lookup metadata (diff)
downloadsynapse-d0b8d49f714dca232f8a970e31042686ea82b982.tar.xz
Kill PROTOCOL_META since I'm not using it any more
Diffstat (limited to 'synapse/appservice')
-rw-r--r--synapse/appservice/api.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/synapse/appservice/api.py b/synapse/appservice/api.py
index 1de0e7240f..acef09609c 100644
--- a/synapse/appservice/api.py
+++ b/synapse/appservice/api.py
@@ -52,13 +52,6 @@ class ApplicationServiceApi(SimpleHttpClient):
     pushing.
     """
 
-    PROTOCOL_META = {
-        # TODO(paul): Declare kinds of metadata in here
-        "gitter": {
-            "user_fields": ["username"],
-        }
-    }
-
     def __init__(self, hs):
         super(ApplicationServiceApi, self).__init__(hs)
         self.clock = hs.get_clock()