From 34eae1f28464883db16f20ff1bfe43f5bf49e3dc Mon Sep 17 00:00:00 2001 From: Fabien 'egg' O'Carroll Date: Thu, 25 Aug 2022 15:41:43 -0400 Subject: [PATCH] Promoted Member Attribution to a private beta (#15316) We promote from alpha -> beta so that we don't require the enableDeveloperExperiments flag, the toggle in the UI is behind the flag still, so it will only be visible to developers or people using alpha features. --- ghost/core/core/shared/labs.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghost/core/core/shared/labs.js b/ghost/core/core/shared/labs.js index fab34176dc..5480c2f3f7 100644 --- a/ghost/core/core/shared/labs.js +++ b/ghost/core/core/shared/labs.js @@ -24,14 +24,14 @@ const GA_FEATURES = [ // NOTE: this allowlist is meant to be used to filter out any unexpected // input for the "labs" setting value const BETA_FEATURES = [ - 'activitypub' + 'activitypub', + 'memberAttribution' ]; const ALPHA_FEATURES = [ 'auditLog', 'urlCache', 'beforeAfterCard', - 'memberAttribution', 'emailAlerts' ];