diff options
author | Paul "LeoNerd" Evans <paul@matrix.org> | 2016-08-25 15:45:28 +0100 |
---|---|---|
committer | Paul "LeoNerd" Evans <paul@matrix.org> | 2016-08-25 15:45:28 +0100 |
commit | d0b8d49f714dca232f8a970e31042686ea82b982 (patch) | |
tree | a57d8e92d03edb680c9f48b25bb7b58d6ede6ceb /synapse/appservice | |
parent | Actually query over AS API for 3PE lookup metadata (diff) | |
download | synapse-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.py | 7 |
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() |