Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
synapse
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Maunium
synapse
Commits
4dabcf02
Unverified
Commit
4dabcf02
authored
3 years ago
by
Richard van der Hoff
Committed by
GitHub
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Include m.room.create in invite_room_state for Spaces (#9710)
parent
f02663c4
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
changelog.d/9710.feature
+1
-0
1 addition, 0 deletions
changelog.d/9710.feature
synapse/config/api.py
+4
-0
4 additions, 0 deletions
synapse/config/api.py
with
5 additions
and
0 deletions
changelog.d/9710.feature
0 → 100644
+
1
−
0
View file @
4dabcf02
Experimental Spaces support
:
include
`m.room.create`
in
the
room
state
sent
with
room-invites.
This diff is collapsed.
Click to expand it.
synapse/config/api.py
+
4
−
0
View file @
4dabcf02
...
...
@@ -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
"
,
[])
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment