From 84ce6c183d12e4b3d4e0d800c4f63511bd828b60 Mon Sep 17 00:00:00 2001 From: Comfy Org PR Bot Date: Wed, 29 Oct 2025 12:16:20 +0900 Subject: [PATCH] [backport rh-test] add dynamic config field for requiring/not requiring whitelist (#6356) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Backport of #6355 to `rh-test` Automatically created by backport workflow. ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-6356-backport-rh-test-add-dynamic-config-field-for-requiring-not-requiring-whitelist-29b6d73d36508151bd9dc34a4d62bcf1) by [Unito](https://www.unito.io) Co-authored-by: Christian Byrne --- src/platform/remoteConfig/types.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/platform/remoteConfig/types.ts b/src/platform/remoteConfig/types.ts index 939c6bbf1..010c00ad2 100644 --- a/src/platform/remoteConfig/types.ts +++ b/src/platform/remoteConfig/types.ts @@ -14,6 +14,7 @@ type ServerHealthAlert = { */ export type RemoteConfig = { mixpanel_token?: string + require_whitelist?: boolean subscription_required?: boolean server_health_alert?: ServerHealthAlert }