0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-03-11 02:12:21 -05:00

Added TK reminders labs feature (#19057)

refs TryGhost/Product#4156
This commit is contained in:
Steve Larson 2023-11-20 17:30:16 -06:00 committed by GitHub
parent 17dec5a749
commit a398067159
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View file

@ -59,6 +59,10 @@ const features = [{
title: 'AdminX Demo',
description: 'Adds a navigation link to the AdminX demo app',
flag: 'adminXDemo'
},{
title: 'TK Reminders',
description: 'Enables the TK Reminders feature in the editor',
flag: 'tkReminders'
}];
const AlphaFeatures: React.FC = () => {

View file

@ -48,7 +48,8 @@ const ALPHA_FEATURES = [
'editorEmojiPicker',
'adminXOffers',
'filterEmailDisabled',
'adminXDemo'
'adminXDemo',
'tkReminders'
];
module.exports.GA_KEYS = [...GA_FEATURES];