mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-24 19:33:02 +03:00
Added mentions email notification alpha flag (#16164)
refs https://github.com/TryGhost/Team/issues/2429 - Added an alpha feature flag toggle for webmentions' email notifications
This commit is contained in:
parent
e3b0152ae0
commit
95b6a9d569
@ -66,6 +66,7 @@ export default class FeatureService extends Service {
|
||||
@feature('emailStability') emailStability;
|
||||
@feature('webmentions') webmentions;
|
||||
@feature('outboundLinkTagging') outboundLinkTagging;
|
||||
@feature('webmentionEmail') webmentionEmail;
|
||||
|
||||
_user = null;
|
||||
|
||||
|
@ -226,6 +226,19 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="gh-expandable-block">
|
||||
<div class="gh-expandable-header">
|
||||
<div>
|
||||
<h4 class="gh-expandable-title">Webmention Email Notifications</h4>
|
||||
<p class="gh-expandable-description">
|
||||
Receive email notifications when a webmention is received.
|
||||
</p>
|
||||
</div>
|
||||
<div class="for-switch">
|
||||
<GhFeatureFlag @flag="webmentionEmail" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="gh-expandable-block">
|
||||
<div class="gh-expandable-header">
|
||||
<div>
|
||||
|
@ -34,6 +34,7 @@ const ALPHA_FEATURES = [
|
||||
'beforeAfterCard',
|
||||
'lexicalEditor',
|
||||
'webmentions',
|
||||
'webmentionEmail',
|
||||
'outboundLinkTagging'
|
||||
];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user