diff --git a/ghost/admin/app/services/feature.js b/ghost/admin/app/services/feature.js index b924856b74..243c1c6bcc 100644 --- a/ghost/admin/app/services/feature.js +++ b/ghost/admin/app/services/feature.js @@ -66,6 +66,7 @@ export default class FeatureService extends Service { @feature('emailStability') emailStability; @feature('webmentions') webmentions; @feature('outboundLinkTagging') outboundLinkTagging; + @feature('webmentionEmail') webmentionEmail; _user = null; diff --git a/ghost/admin/app/templates/settings/labs.hbs b/ghost/admin/app/templates/settings/labs.hbs index 932116aeea..b4f94df695 100644 --- a/ghost/admin/app/templates/settings/labs.hbs +++ b/ghost/admin/app/templates/settings/labs.hbs @@ -226,6 +226,19 @@ +
+
+
+

Webmention Email Notifications

+

+ Receive email notifications when a webmention is received. +

+
+
+ +
+
+
diff --git a/ghost/core/core/shared/labs.js b/ghost/core/core/shared/labs.js index 6d6e1ac39f..8a54eff0df 100644 --- a/ghost/core/core/shared/labs.js +++ b/ghost/core/core/shared/labs.js @@ -34,6 +34,7 @@ const ALPHA_FEATURES = [ 'beforeAfterCard', 'lexicalEditor', 'webmentions', + 'webmentionEmail', 'outboundLinkTagging' ];