From c123fdf5dafa25249250b859511b6b91686c9077 Mon Sep 17 00:00:00 2001 From: Rishabh Date: Fri, 19 Aug 2022 16:17:11 +0530 Subject: [PATCH] Added feature flag for cardless trials refs https://github.com/TryGhost/Team/issues/1727 - adds alpha flag to toggle cardless trials via expiring complimentary subscriptions --- ghost/core/core/shared/labs.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ghost/core/core/shared/labs.js b/ghost/core/core/shared/labs.js index 9e38a6dafb..b6061f5664 100644 --- a/ghost/core/core/shared/labs.js +++ b/ghost/core/core/shared/labs.js @@ -30,7 +30,8 @@ const ALPHA_FEATURES = [ 'beforeAfterCard', 'freeTrial', 'memberAttribution', - 'searchHelper' + 'searchHelper', + 'compExpiring' ]; module.exports.GA_KEYS = [...GA_FEATURES];