Skip to content

Commit 697b654

Browse files
authored
Fix room_list_publication_rules docs for v.126.0
1 parent 2830013 commit 697b654

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

docs/usage/configuration/config_documentation.md

+8-7
Original file line numberDiff line numberDiff line change
@@ -4325,28 +4325,29 @@ room list by default_
43254325
Example configuration:
43264326

43274327
```yaml
4328-
# No rule list specified. Anyone may publish any room to the public list.
4328+
# No rule list specified. No one may publish any room to the public list, except server admins.
43294329
# This is the default behaviour.
43304330
room_list_publication_rules:
43314331
```
43324332

43334333
```yaml
4334-
# A list of one rule which allows everything.
4334+
# A list of one rule which denies everything.
43354335
# This has the same effect as the previous example.
43364336
room_list_publication_rules:
4337-
- "action": "allow"
4337+
- "action": "deny"
43384338
```
43394339

43404340
```yaml
4341-
# An empty list of rules. No-one may publish to the room list.
4341+
# An empty list of rules.
4342+
# This has the same effect as the previous example.
43424343
room_list_publication_rules: []
43434344
```
43444345

43454346
```yaml
4346-
# A list of one rule which denies everything.
4347-
# This has the same effect as the previous example.
4347+
# A list of one rule which allows everything.
4348+
# This was the default behaviour pre v1.126.0.
43484349
room_list_publication_rules:
4349-
- "action": "deny"
4350+
- "action": "allow"
43504351
```
43514352

43524353
```yaml

0 commit comments

Comments
 (0)