mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 15:30:13 +01:00
Integration of matomo with env vars
This commit is contained in:
parent
aa080a7506
commit
ec59af3777
5 changed files with 92 additions and 1 deletions
|
|
@ -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',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue