From dfd08a8c0110f081e02c7374b3edb7152edf942d Mon Sep 17 00:00:00 2001 From: ElementRobot Date: Fri, 28 Feb 2025 11:32:53 +0000 Subject: [PATCH] Playwright Docker image updates (#29355) * [create-pull-request] automated change * Update synapse.ts * Update synapse.ts --------- Co-authored-by: t3chguy <2403652+t3chguy@users.noreply.github.com> Co-authored-by: Michael Telatynski <7t3chguy@gmail.com> --- playwright/testcontainers/synapse.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/playwright/testcontainers/synapse.ts b/playwright/testcontainers/synapse.ts index 13250c86d9..68c249a424 100644 --- a/playwright/testcontainers/synapse.ts +++ b/playwright/testcontainers/synapse.ts @@ -25,7 +25,7 @@ import { type HomeserverContainer, type StartedHomeserverContainer } from "./Hom import { type StartedMatrixAuthenticationServiceContainer } from "./mas.ts"; import { Api, ClientServerApi, type Verb } from "../plugins/utils/api.ts"; -const TAG = "develop@sha256:8d1c531cf6010b63142a04e1b138a60720946fa131ad404813232f02db4ce7ba"; +const TAG = "develop@sha256:3c22173f9e2c28af991b918a1a097d8bf05dd9bdd4afd89d142c65004a59322d"; const DEFAULT_CONFIG = { server_name: "localhost", @@ -144,6 +144,7 @@ const DEFAULT_CONFIG = { enabled: true, include_offline_users_on_sync: true, }, + room_list_publication_rules: [{ action: "allow" }], }; export type SynapseConfig = Partial;