Added a feature flag for additional payment methods

ref ENG-812
ref https://linear.app/tryghost/issue/ENG-812
This commit is contained in:
Fabien O'Carroll 2024-04-04 10:09:18 -04:00 committed by Fabien 'egg' O'Carroll
parent 1d13a9c549
commit 781599de62
2 changed files with 5 additions and 0 deletions

View File

@ -59,6 +59,10 @@ const features = [{
title: 'NestJS Playground',
description: 'Wires up the Ghost NestJS App to the Admin API',
flag: 'NestPlayground'
},{
title: 'Additional payment methods',
description: 'Adds support for additional payment methods in Stripe Checkout',
flag: 'additionalPaymentMethods'
}];
const AlphaFeatures: React.FC = () => {

View File

@ -36,6 +36,7 @@ const BETA_FEATURES = [
];
const ALPHA_FEATURES = [
'additionalPaymentMethods',
'NestPlayground',
'urlCache',
'lexicalMultiplayer',