mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-24 11:22:19 +03:00
Added feature flag for portal improvements
refs GRO-154
This commit is contained in:
parent
b450db557b
commit
36294c6482
@ -67,6 +67,10 @@ const features = [{
|
||||
title: 'New email addresses',
|
||||
description: 'For self hosters, forces the usage of the mail.from config as from address for all outgoing emails',
|
||||
flag: 'newEmailAddresses'
|
||||
},{
|
||||
title: 'Portal improvements',
|
||||
description: 'Adds a bunch of improvements to portal and portal settings',
|
||||
flag: 'portalImprovements'
|
||||
}];
|
||||
|
||||
const AlphaFeatures: React.FC = () => {
|
||||
|
@ -81,6 +81,7 @@ export default class FeatureService extends Service {
|
||||
@feature('filterEmailDisabled') filterEmailDisabled;
|
||||
@feature('adminXDemo') adminXDemo;
|
||||
@feature('tkReminders') tkReminders;
|
||||
@feature('portalImprovements') portalImprovements;
|
||||
|
||||
_user = null;
|
||||
|
||||
|
@ -50,7 +50,8 @@ const ALPHA_FEATURES = [
|
||||
'filterEmailDisabled',
|
||||
'adminXDemo',
|
||||
'tkReminders',
|
||||
'newEmailAddresses'
|
||||
'newEmailAddresses',
|
||||
'portalImprovements'
|
||||
];
|
||||
|
||||
module.exports.GA_KEYS = [...GA_FEATURES];
|
||||
|
Loading…
Reference in New Issue
Block a user