Added piwik

This commit is contained in:
vjrj 2017-11-29 22:17:00 +01:00
parent 08824a1e4e
commit 055469055c
5 changed files with 29 additions and 10 deletions

View file

@ -0,0 +1,8 @@
Meteor.startup(function() {
return Tracker.autorun(function() {
var userId;
userId = Meteor.userId();
console.log(userId);
Meteor.Piwik.setUserInfo(userId);
});
});