0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-27 22:49:56 -05:00

Bumped email stability flag to beta (#16116)

- allows email stability to be turned on without developer experiments enabled
This commit is contained in:
Rishabh Garg 2023-01-13 20:30:15 +05:30 committed by GitHub
parent 8d4bc97dbe
commit 7d060e5edb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -25,14 +25,14 @@ const GA_FEATURES = [
// NOTE: this allowlist is meant to be used to filter out any unexpected // NOTE: this allowlist is meant to be used to filter out any unexpected
// input for the "labs" setting value // input for the "labs" setting value
const BETA_FEATURES = [ const BETA_FEATURES = [
'activitypub' 'activitypub',
'emailStability'
]; ];
const ALPHA_FEATURES = [ const ALPHA_FEATURES = [
'urlCache', 'urlCache',
'beforeAfterCard', 'beforeAfterCard',
'lexicalEditor', 'lexicalEditor'
'emailStability'
]; ];
module.exports.GA_KEYS = [...GA_FEATURES]; module.exports.GA_KEYS = [...GA_FEATURES];