From 817f041d0f0fd36d446aaa1426cebaaf9d7fbae1 Mon Sep 17 00:00:00 2001 From: Kim Brose <2803622+HarHarLinks@users.noreply.github.com> Date: Thu, 27 Mar 2025 11:02:17 +0100 Subject: [PATCH 1/2] Fix room_list_publication_rules docs for v.126.0 Signed-off-by: Kim Brose --- docs/usage/configuration/config_documentation.md | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/docs/usage/configuration/config_documentation.md b/docs/usage/configuration/config_documentation.md index d2d282f2037..f35340494a3 100644 --- a/docs/usage/configuration/config_documentation.md +++ b/docs/usage/configuration/config_documentation.md @@ -4325,28 +4325,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 From ea14e8621d6abf8edfccb055748be01df6daf90e Mon Sep 17 00:00:00 2001 From: Kim Brose Date: Thu, 27 Mar 2025 11:07:51 +0100 Subject: [PATCH 2/2] Add changelog file Signed-off-by: Kim Brose --- changelog.d/18286.doc | 1 + 1 file changed, 1 insertion(+) create mode 100644 changelog.d/18286.doc diff --git a/changelog.d/18286.doc b/changelog.d/18286.doc new file mode 100644 index 00000000000..f15630d28aa --- /dev/null +++ b/changelog.d/18286.doc @@ -0,0 +1 @@ +Update room_list_publication_rules docs that were missed in v.126.0. Contributed by @HarHarLinks.