Skip to content

Commit 330a7ed

Browse files
authored
Merge branch 'main' into domain-warmup-migrations
2 parents 8732a18 + 7324f96 commit 330a7ed

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

apps/admin-x-settings/src/components/settings/advanced/labs/PrivateFeatures.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,10 @@ const features: Feature[] = [{
4747
title: 'New Admin Experience',
4848
description: 'Try the new React-based admin interface. Only available on ghost.io',
4949
flag: 'adminForward'
50+
}, {
51+
title: 'Domain Warmup',
52+
description: 'Enable custom sending domain warmup for gradual email volume increases',
53+
flag: 'domainWarmup'
5054
}];
5155

5256
const AlphaFeatures: React.FC = () => {

ghost/core/core/shared/labs.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ const PRIVATE_FEATURES = [
5151
'utmTracking',
5252
'emailUniqueid',
5353
'welcomeEmails',
54-
'adminForward'
54+
'adminForward',
55+
'domainWarmup'
5556
];
5657

5758
module.exports.GA_KEYS = [...GA_FEATURES];

ghost/core/test/e2e-api/admin/__snapshots__/config.test.js.snap

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ Object {
1616
"contentVisibility": true,
1717
"contentVisibilityAlpha": true,
1818
"customFonts": true,
19+
"domainWarmup": true,
1920
"editorExcerpt": true,
2021
"emailCustomization": true,
2122
"emailUniqueid": true,

0 commit comments

Comments
 (0)