0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-14 16:48:18 +02:00

by default include m.room.encryption on invites (#3902)

* by default include m.room.encryption on invites

* fix constant

* changelog
This commit is contained in:
Matthew Hodgson 2019-01-30 16:26:13 +00:00 committed by Amber Brown
parent d534a27fe8
commit ad7ac8853c
3 changed files with 4 additions and 0 deletions

1
changelog.d/3902.feature Normal file
View file

@ -0,0 +1 @@
Include m.room.encryption on invites by default

View file

@ -73,6 +73,7 @@ class EventTypes(object):
RoomHistoryVisibility = "m.room.history_visibility"
CanonicalAlias = "m.room.canonical_alias"
RoomAvatar = "m.room.avatar"
RoomEncryption = "m.room.encryption"
GuestAccess = "m.room.guest_access"
# These are used for validation

View file

@ -24,6 +24,7 @@ class ApiConfig(Config):
EventTypes.JoinRules,
EventTypes.CanonicalAlias,
EventTypes.RoomAvatar,
EventTypes.RoomEncryption,
EventTypes.Name,
])
@ -36,5 +37,6 @@ class ApiConfig(Config):
- "{JoinRules}"
- "{CanonicalAlias}"
- "{RoomAvatar}"
- "{RoomEncryption}"
- "{Name}"
""".format(**vars(EventTypes))