matrix: add m.room.server_acl

This commit is contained in:
Aminda Suomalainen 2021-09-30 22:56:11 +03:00
parent 69718261da
commit b75043498b
Signed by: Mikaela
GPG Key ID: 99392F62BAE30723

View File

@ -0,0 +1,25 @@
# m.room.server_acl
This event type controls which servers can access the room at all. Be very careful
adjusting this.
* https://matrix.org/docs/guides/moderation#banning-servers-from-rooms-server-acls
```json
{
"allow": [
"*"
],
"deny": [
"glowers.club",
"*.glowers.club",
"pleasecuminside.me",
"*.pleasecuminside.me",
"midov.pl",
"*.midov.pl",
"kiwifarms.net",
"*.kiwifarms.net"
]
}
```