diff options
author | Erik Johnston <erik@matrix.org> | 2020-12-11 10:17:49 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-11 10:17:49 +0000 |
commit | 1d55c7b56730f0aeb8a620a22d0994f1dc735dfe (patch) | |
tree | a65007d2202da9ba911cd3b7e19b1bd3a94f51b2 /synapse/handlers/room.py | |
parent | Don't publish `latest` docker image until all archs are built (#8909) (diff) | |
download | synapse-1d55c7b56730f0aeb8a620a22d0994f1dc735dfe.tar.xz |
Don't ratelimit autojoining of rooms (#8921)
Fixes #8866
Diffstat (limited to 'synapse/handlers/room.py')
-rw-r--r-- | synapse/handlers/room.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/synapse/handlers/room.py b/synapse/handlers/room.py index 930047e730..82fb72b381 100644 --- a/synapse/handlers/room.py +++ b/synapse/handlers/room.py @@ -440,6 +440,7 @@ class RoomCreationHandler(BaseHandler): invite_list=[], initial_state=initial_state, creation_content=creation_content, + ratelimit=False, ) # Transfer membership events @@ -735,6 +736,7 @@ class RoomCreationHandler(BaseHandler): room_alias=room_alias, power_level_content_override=power_level_content_override, creator_join_profile=creator_join_profile, + ratelimit=ratelimit, ) if "name" in config: @@ -838,6 +840,7 @@ class RoomCreationHandler(BaseHandler): room_alias: Optional[RoomAlias] = None, power_level_content_override: Optional[JsonDict] = None, creator_join_profile: Optional[JsonDict] = None, + ratelimit: bool = True, ) -> int: """Sends the initial events into a new room. @@ -884,7 +887,7 @@ class RoomCreationHandler(BaseHandler): creator.user, room_id, "join", - ratelimit=False, + ratelimit=ratelimit, content=creator_join_profile, ) |