diff options
author | Paul "LeoNerd" Evans <paul@matrix.org> | 2016-08-24 12:33:01 +0100 |
---|---|---|
committer | Paul "LeoNerd" Evans <paul@matrix.org> | 2016-08-24 12:33:01 +0100 |
commit | 9899824b851bc1e1ccaa0da8cb2dc5bf783014e8 (patch) | |
tree | 726fbe5f0b07977f816eb05c4700414a1fcc7717 /synapse/appservice | |
parent | Move 3PU/3PL lookup APIs into /thirdparty containing entity (diff) | |
download | synapse-9899824b851bc1e1ccaa0da8cb2dc5bf783014e8.tar.xz |
Initial hack at the 3PN protocols metadata lookup API
Diffstat (limited to 'synapse/appservice')
-rw-r--r-- | synapse/appservice/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/synapse/appservice/__init__.py b/synapse/appservice/__init__.py index bde9b51b2e..126a10efb7 100644 --- a/synapse/appservice/__init__.py +++ b/synapse/appservice/__init__.py @@ -88,6 +88,8 @@ class ApplicationService(object): self.sender = sender self.namespaces = self._check_namespaces(namespaces) self.id = id + + # .protocols is a publicly visible field if protocols: self.protocols = set(protocols) else: |