mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-06 22:40:14 -05:00
parent
17932759d3
commit
2d61d5e94e
3 changed files with 16 additions and 1 deletions
|
@ -67,6 +67,7 @@ export default class FeatureService extends Service {
|
||||||
@feature('lexicalEditor') lexicalEditor;
|
@feature('lexicalEditor') lexicalEditor;
|
||||||
@feature('audienceFeedback') audienceFeedback;
|
@feature('audienceFeedback') audienceFeedback;
|
||||||
@feature('fixNewsletterLinks') fixNewsletterLinks;
|
@feature('fixNewsletterLinks') fixNewsletterLinks;
|
||||||
|
@feature('suppressionList') suppressionList;
|
||||||
|
|
||||||
_user = null;
|
_user = null;
|
||||||
|
|
||||||
|
|
|
@ -232,6 +232,19 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="gh-expandable-block">
|
||||||
|
<div class="gh-expandable-header">
|
||||||
|
<div>
|
||||||
|
<h4 class="gh-expandable-title">Suppression List</h4>
|
||||||
|
<p class="gh-expandable-description">
|
||||||
|
Allows checking whether a member's email is blocked and removing emails from the suppression list.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div class="for-switch">
|
||||||
|
<GhFeatureFlag @flag="suppressionList" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
|
@ -35,7 +35,8 @@ const BETA_FEATURES = [
|
||||||
const ALPHA_FEATURES = [
|
const ALPHA_FEATURES = [
|
||||||
'urlCache',
|
'urlCache',
|
||||||
'beforeAfterCard',
|
'beforeAfterCard',
|
||||||
'lexicalEditor'
|
'lexicalEditor',
|
||||||
|
'suppressionList'
|
||||||
];
|
];
|
||||||
|
|
||||||
module.exports.GA_KEYS = [...GA_FEATURES];
|
module.exports.GA_KEYS = [...GA_FEATURES];
|
||||||
|
|
Loading…
Reference in a new issue