diff options
author | Brendan Abolivier <babolivier@matrix.org> | 2021-09-24 16:38:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-24 16:38:23 +0200 |
commit | b10257e87972d158f4b6a0c7d1fe7239014ea10a (patch) | |
tree | fb2c4a157dbd541cba7f33323b11f8030ad6f8ed /changelog.d | |
parent | Update postgresql testing script (#10906) (diff) | |
download | synapse-b10257e87972d158f4b6a0c7d1fe7239014ea10a.tar.xz |
Add a spamchecker callback to allow or deny room creation based on invites (#10898)
This is in the context of creating new module callbacks that modules in https://github.com/matrix-org/synapse-dinsic can use, in an effort to reconcile the spam checker API in synapse-dinsic with the one in mainline. This adds a callback that's fairly similar to user_may_create_room except it also allows processing based on the invites sent at room creation.
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/10898.feature | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/10898.feature b/changelog.d/10898.feature new file mode 100644 index 0000000000..97fa39fd0c --- /dev/null +++ b/changelog.d/10898.feature @@ -0,0 +1 @@ +Add a `user_may_create_room_with_invites` spam checker callback to allow modules to allow or deny a room creation request based on the invites and/or 3PID invites it includes. |