6 lines
154 B
JavaScript
6 lines
154 B
JavaScript
Template.proficiencyViewList.helpers({
|
|
proficiencies: function(){
|
|
return Proficiencies.find({"parent.id": this.parentId, charId: this.charId});
|
|
}
|
|
});
|