mirror of
https://gitlab.com/bmcgonag/get_my.git
synced 2026-03-27 00:08:49 +00:00
19 lines
No EOL
331 B
JavaScript
19 lines
No EOL
331 B
JavaScript
import { Categories } from '../../../imports/api/category.js';
|
|
|
|
Template.catMgmtTbl.onCreated(function() {
|
|
this.subscribe("myCategories");
|
|
});
|
|
|
|
Template.catMgmtTbl.onRendered(function() {
|
|
|
|
});
|
|
|
|
Template.catMgmtTbl.helpers({
|
|
cats: function() {
|
|
return Categories.find({});
|
|
}
|
|
});
|
|
|
|
Template.catMgmtTbl.events({
|
|
|
|
}); |