mirror of
https://gitlab.com/bmcgonag/get_my.git
synced 2026-03-27 00:08:49 +00:00
19 lines
334 B
JavaScript
19 lines
334 B
JavaScript
|
|
import { Products } from '../../../imports/api/products.js';
|
||
|
|
|
||
|
|
Template.prodMgmtTbl.onCreated(function() {
|
||
|
|
this.subscribe("myProducts");
|
||
|
|
});
|
||
|
|
|
||
|
|
Template.prodMgmtTbl.onRendered(function() {
|
||
|
|
|
||
|
|
});
|
||
|
|
|
||
|
|
Template.prodMgmtTbl.helpers({
|
||
|
|
products: function() {
|
||
|
|
return Products.find({});
|
||
|
|
},
|
||
|
|
});
|
||
|
|
|
||
|
|
Template.prodMgmtTbl.events({
|
||
|
|
|
||
|
|
});
|