summary refs log tree commit diff
path: root/docs/usage/configuration/config_documentation.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/usage/configuration/config_documentation.md')
-rw-r--r--docs/usage/configuration/config_documentation.md15
1 files changed, 8 insertions, 7 deletions
diff --git a/docs/usage/configuration/config_documentation.md b/docs/usage/configuration/config_documentation.md

index 5351bef83a..2228c18a6c 100644 --- a/docs/usage/configuration/config_documentation.md +++ b/docs/usage/configuration/config_documentation.md
@@ -4331,28 +4331,29 @@ room list by default_ Example configuration: ```yaml -# No rule list specified. Anyone may publish any room to the public list. +# No rule list specified. No one may publish any room to the public list, except server admins. # This is the default behaviour. room_list_publication_rules: ``` ```yaml -# A list of one rule which allows everything. +# A list of one rule which denies everything. # This has the same effect as the previous example. room_list_publication_rules: - - "action": "allow" + - "action": "deny" ``` ```yaml -# An empty list of rules. No-one may publish to the room list. +# An empty list of rules. +# This has the same effect as the previous example. room_list_publication_rules: [] ``` ```yaml -# A list of one rule which denies everything. -# This has the same effect as the previous example. +# A list of one rule which allows everything. +# This was the default behaviour pre v1.126.0. room_list_publication_rules: - - "action": "deny" + - "action": "allow" ``` ```yaml