mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-06 15:49:01 +02:00
Add user info to correlate with events.
This commit is contained in:
@@ -67,6 +67,7 @@ html(itemscope, itemtype='http://schema.org/Product')
|
||||
Countly.q = Countly.q || [];
|
||||
Countly.app_key = "#{settings.analytics.countly.token}";
|
||||
Countly.url = "https://try.count.ly";
|
||||
|
||||
Countly.q.push(['track_sessions']);
|
||||
Countly.q.push(['track_pageview']);
|
||||
|
||||
@@ -79,6 +80,15 @@ html(itemscope, itemtype='http://schema.org/Product')
|
||||
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(cly, s);
|
||||
})();
|
||||
|
||||
if (session && session.user)
|
||||
script(type="text/javascript").
|
||||
Countly.q.push(['user_details', {
|
||||
handle: "#{session.user._id}",
|
||||
email: "#{session.user.email}",
|
||||
}]);
|
||||
|
||||
|
||||
|
||||
// End countly Analytics
|
||||
|
||||
script(type="text/javascript").
|
||||
|
||||
Reference in New Issue
Block a user