Integration of matomo with env vars

This commit is contained in:
guillaume 2018-07-27 18:08:09 +02:00
parent aa080a7506
commit ec59af3777
5 changed files with 92 additions and 1 deletions

View file

@ -14,6 +14,8 @@ FlowRouter.route('/', {
Filter.reset();
EscapeActions.executeAll();
Utils.manageMatomo();
BlazeLayout.render('defaultLayout', {
headerBar: 'boardListHeaderBar',
content: 'boardList',
@ -38,6 +40,8 @@ FlowRouter.route('/b/:id/:slug', {
EscapeActions.executeUpTo('popup-close');
}
Utils.manageMatomo();
BlazeLayout.render('defaultLayout', {
headerBar: 'boardHeaderBar',
content: 'board',
@ -53,6 +57,8 @@ FlowRouter.route('/b/:boardId/:slug/:cardId', {
Session.set('currentBoard', params.boardId);
Session.set('currentCard', params.cardId);
Utils.manageMatomo();
BlazeLayout.render('defaultLayout', {
headerBar: 'boardHeaderBar',
content: 'board',