diff options
author | guillaume <guillaume.cassou@supinfo.com> | 2018-07-27 18:08:09 +0200 |
---|---|---|
committer | guillaume <guillaume.cassou@supinfo.com> | 2018-07-27 18:08:09 +0200 |
commit | ec59af3777f5ac88ee6ad44a502c0de5d35213e2 (patch) | |
tree | 78c15ddc925d3e54cbca2a7b346b4c07484ff94d /config/router.js | |
parent | aa080a75062405d1f7734422f8dc3f2c08c96140 (diff) | |
download | wekan-ec59af3777f5ac88ee6ad44a502c0de5d35213e2.tar.gz wekan-ec59af3777f5ac88ee6ad44a502c0de5d35213e2.tar.bz2 wekan-ec59af3777f5ac88ee6ad44a502c0de5d35213e2.zip |
Integration of matomo with env vars
Diffstat (limited to 'config/router.js')
-rw-r--r-- | config/router.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/config/router.js b/config/router.js index 1f80004a..91d08897 100644 --- a/config/router.js +++ b/config/router.js @@ -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', |