mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-03-11 02:12:21 -05:00
Added email stability feature flag
no issue
This commit is contained in:
parent
5c2f0b9a4b
commit
6c84e10e46
3 changed files with 16 additions and 1 deletions
|
@ -63,6 +63,7 @@ export default class FeatureService extends Service {
|
|||
@feature('lexicalEditor') lexicalEditor;
|
||||
@feature('audienceFeedback') audienceFeedback;
|
||||
@feature('suppressionList') suppressionList;
|
||||
@feature('emailStability') emailStability;
|
||||
|
||||
_user = null;
|
||||
|
||||
|
|
|
@ -213,6 +213,19 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="gh-expandable-block">
|
||||
<div class="gh-expandable-header">
|
||||
<div>
|
||||
<h4 class="gh-expandable-title">Email stability</h4>
|
||||
<p class="gh-expandable-description">
|
||||
Use a new email sending flow that improves how email errors are handled.
|
||||
</p>
|
||||
</div>
|
||||
<div class="for-switch">
|
||||
<GhFeatureFlag @flag="emailStability" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{{/if}}
|
||||
|
|
|
@ -30,7 +30,8 @@ const ALPHA_FEATURES = [
|
|||
'urlCache',
|
||||
'beforeAfterCard',
|
||||
'lexicalEditor',
|
||||
'suppressionList'
|
||||
'suppressionList',
|
||||
'emailStability'
|
||||
];
|
||||
|
||||
module.exports.GA_KEYS = [...GA_FEATURES];
|
||||
|
|
Loading…
Add table
Reference in a new issue