From a54c1516aecaceebb3b1c8327b0b589b741391de Mon Sep 17 00:00:00 2001 From: Christian Byrne Date: Tue, 28 Oct 2025 19:40:52 -0700 Subject: [PATCH] add dynamic config field for requiring/not requiring whitelist (#6355) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Summary Adds FF to toggle whitelist gating on client. ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-6355-add-dynamic-config-field-for-requiring-not-requiring-whitelist-29b6d73d36508172b7c2f6f65f6b8a65) by [Unito](https://www.unito.io) --- 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 939c6bbf18..010c00ad26 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 }