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

Include m.room.create in invite_room_state for Spaces (#9710)

This commit is contained in:
Richard van der Hoff 2021-03-30 14:03:17 +01:00 committed by GitHub
parent f02663c4dd
commit 4dabcf026e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 0 deletions

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

@ -0,0 +1 @@
Experimental Spaces support: include `m.room.create` in the room state sent with room-invites.

View file

@ -88,6 +88,10 @@ class ApiConfig(Config):
if not room_prejoin_state_config.get("disable_default_event_types"):
yield from _DEFAULT_PREJOIN_STATE_TYPES
if self.spaces_enabled:
# MSC1772 suggests adding m.room.create to the prejoin state
yield EventTypes.Create
yield from room_prejoin_state_config.get("additional_event_types", [])