mirror of
https://gitlab.com/bmcgonag/get_my.git
synced 2026-03-27 16:28:50 +00:00
17 lines
255 B
JavaScript
17 lines
255 B
JavaScript
|
|
import { Products } from '../../../imports/api/products.js';
|
||
|
|
|
||
|
|
Template.prodMgmt.onCreated(function() {
|
||
|
|
this.subscribe("myProducts");
|
||
|
|
});
|
||
|
|
|
||
|
|
Template.prodMgmt.onRendered(function() {
|
||
|
|
|
||
|
|
});
|
||
|
|
|
||
|
|
Template.prodMgmt.helpers({
|
||
|
|
|
||
|
|
});
|
||
|
|
|
||
|
|
Template.prodMgmt.events({
|
||
|
|
|
||
|
|
});
|