mirror of
https://github.com/wekan/wekan.git
synced 2025-12-17 07:50:12 +01:00
12 lines
176 B
JavaScript
12 lines
176 B
JavaScript
|
|
Template.resultCard.helpers({
|
||
|
|
userId() {
|
||
|
|
return Meteor.userId();
|
||
|
|
},
|
||
|
|
});
|
||
|
|
|
||
|
|
BlazeComponent.extendComponent({
|
||
|
|
events() {
|
||
|
|
return [{}];
|
||
|
|
},
|
||
|
|
}).register('resultCard');
|