8dfa490638
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.
8 lines
308 B
JavaScript
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')
|
|
};
|