diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2021-04-08 08:28:32 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-08 08:28:32 -0400 |
commit | 452991527a3e76715f0571f81f036ea20de0be36 (patch) | |
tree | e6f76e24e119724baa6e2832f7ec00901db8d6f4 /scripts-dev | |
parent | Record more information into structured logs. (#9654) (diff) | |
download | synapse-452991527a3e76715f0571f81f036ea20de0be36.tar.xz |
MSC3083: Check for space membership during a local join of restricted rooms. (#9735)
When joining a room with join rules set to 'restricted', check if the user is a member of the spaces defined in the 'allow' key of the join rules. This only applies to an experimental room version, as defined in MSC3083.
Diffstat (limited to 'scripts-dev')
-rwxr-xr-x | scripts-dev/complement.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts-dev/complement.sh b/scripts-dev/complement.sh index 31cc20a826..b77187472f 100755 --- a/scripts-dev/complement.sh +++ b/scripts-dev/complement.sh @@ -46,4 +46,4 @@ if [[ -n "$1" ]]; then fi # Run the tests! -COMPLEMENT_BASE_IMAGE=complement-synapse go test -v -tags synapse_blacklist -count=1 $EXTRA_COMPLEMENT_ARGS ./tests +COMPLEMENT_BASE_IMAGE=complement-synapse go test -v -tags synapse_blacklist,msc3083 -count=1 $EXTRA_COMPLEMENT_ARGS ./tests |