mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-06 22:40:14 -05:00
✨ Added embeddable signup form
refs https://github.com/TryGhost/Team/issues/3274 Co-authored-by: Sanne de Vries <sannedv@protonmail.com> Co-authored-by: Ronald Langeveld <hi@ronaldlangeveld.com> Co-authored-by: Jono Mingard <reason.koan@gmail.com> Co-authored-by: Sag <guptazy@gmail.com>
This commit is contained in:
parent
90b9959afc
commit
5e7edb9da5
2 changed files with 3 additions and 17 deletions
|
@ -283,20 +283,6 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="gh-expandable-block">
|
|
||||||
<div class="gh-expandable-header">
|
|
||||||
<div>
|
|
||||||
<h4 class="gh-expandable-title">Signup Form</h4>
|
|
||||||
<p class="gh-expandable-description">
|
|
||||||
Adds an option to generate embed code for the signup form in the email newsletter settings.
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
<div class="for-switch">
|
|
||||||
<GhFeatureFlag @flag="signupForm" />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="gh-expandable-block">
|
<div class="gh-expandable-block">
|
||||||
<div class="gh-expandable-header">
|
<div class="gh-expandable-header">
|
||||||
<div>
|
<div>
|
||||||
|
|
|
@ -18,7 +18,8 @@ const GA_FEATURES = [
|
||||||
'audienceFeedback',
|
'audienceFeedback',
|
||||||
'themeErrorsNotification',
|
'themeErrorsNotification',
|
||||||
'outboundLinkTagging',
|
'outboundLinkTagging',
|
||||||
'announcementBar'
|
'announcementBar',
|
||||||
|
'signupForm'
|
||||||
];
|
];
|
||||||
|
|
||||||
// NOTE: this allowlist is meant to be used to filter out any unexpected
|
// NOTE: this allowlist is meant to be used to filter out any unexpected
|
||||||
|
@ -38,8 +39,7 @@ const ALPHA_FEATURES = [
|
||||||
'emailCustomization',
|
'emailCustomization',
|
||||||
'signupCard',
|
'signupCard',
|
||||||
'collections',
|
'collections',
|
||||||
'adminXSettings',
|
'adminXSettings'
|
||||||
'signupForm'
|
|
||||||
];
|
];
|
||||||
|
|
||||||
module.exports.GA_KEYS = [...GA_FEATURES];
|
module.exports.GA_KEYS = [...GA_FEATURES];
|
||||||
|
|
Loading…
Reference in a new issue