diff options
author | Matthew Hodgson <matthew@matrix.org> | 2018-09-18 14:16:09 +0100 |
---|---|---|
committer | Matthew Hodgson <matthew@matrix.org> | 2018-09-18 14:16:09 +0100 |
commit | 197f4646bd9280959323a1175ba4ed471aea224a (patch) | |
tree | 54e8f8cccad813ab954d7512ed4ae4fed2ba40e8 /synapse/config/api.py | |
parent | unhardcode m.room.avatar (diff) | |
download | synapse-197f4646bd9280959323a1175ba4ed471aea224a.tar.xz |
allow m.room.summary and m.room.encryption events in invites github/matthew/room-summary-on-invites matthew/room-summary-on-invites
to provide better UX for clients receiving invites, so they can show a padlock icon or correct avatars on the inbound invite
Diffstat (limited to 'synapse/config/api.py')
-rw-r--r-- | synapse/config/api.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/synapse/config/api.py b/synapse/config/api.py index 403d96ba76..0417778cc6 100644 --- a/synapse/config/api.py +++ b/synapse/config/api.py @@ -24,6 +24,8 @@ class ApiConfig(Config): EventTypes.JoinRules, EventTypes.CanonicalAlias, EventTypes.RoomAvatar, + EventTypes.RoomSummary, + EventTypes.RoomEncryption, EventTypes.Name, ]) @@ -36,5 +38,7 @@ class ApiConfig(Config): - "{JoinRules}" - "{CanonicalAlias}" - "{RoomAvatar}" + - "{RoomSummary}" + - "{RoomEncryption}" - "{Name}" """.format(**vars(EventTypes)) |