Ghost/ghost/member-attribution/index.js
Simon Backx 8dfa490638
Added outbound link tagging for web posts (#16201)
fixes https://github.com/TryGhost/Team/issues/2433

- Moved all outbound link tagging code to separate OutboundLinkTagger
- Because a site can easily enable/disable this feature, we don't store
the ?refs in the HTML but add them on the fly for now in the Content
API.
2023-02-16 11:26:35 +01:00

8 lines
308 B
JavaScript

module.exports = {
MemberAttributionService: require('./lib/service'),
AttributionBuilder: require('./lib/attribution'),
UrlTranslator: require('./lib/url-translator'),
ReferrerTranslator: require('./lib/referrer-translator'),
OutboundLinkTagger: require('./lib/outbound-link-tagger')
};