mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-27 04:43:12 +03:00
Added alpha feature flag for source attribution
- sets up feature flag for source attribution features
This commit is contained in:
parent
06e4eb0c77
commit
a3a0a1c46c
@ -66,6 +66,7 @@ export default class FeatureService extends Service {
|
||||
@feature('searchHelper') searchHelper;
|
||||
@feature('emailAlerts') emailAlerts;
|
||||
@feature('emailClicks') emailClicks;
|
||||
@feature('sourceAttribution') sourceAttribution;
|
||||
|
||||
_user = null;
|
||||
|
||||
|
@ -239,6 +239,19 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="gh-expandable-block">
|
||||
<div class="gh-expandable-header">
|
||||
<div>
|
||||
<h4 class="gh-expandable-title">Source Attribution</h4>
|
||||
<p class="gh-expandable-description">
|
||||
Track which external sources are driving Member Subscriptions & Paid Conversions (Needs Member Attribution flag)
|
||||
</p>
|
||||
</div>
|
||||
<div class="for-switch">
|
||||
<GhFeatureFlag @flag="sourceAttribution" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="gh-expandable-block">
|
||||
<div class="gh-expandable-header">
|
||||
<div>
|
||||
|
@ -33,7 +33,8 @@ const BETA_FEATURES = [
|
||||
const ALPHA_FEATURES = [
|
||||
'urlCache',
|
||||
'beforeAfterCard',
|
||||
'emailClicks'
|
||||
'emailClicks',
|
||||
'sourceAttribution'
|
||||
];
|
||||
|
||||
module.exports.GA_KEYS = [...GA_FEATURES];
|
||||
|
Loading…
Reference in New Issue
Block a user