mirror of
https://gitlab.com/bmcgonag/get_my.git
synced 2026-03-27 00:08:49 +00:00
19 lines
332 B
JavaScript
19 lines
332 B
JavaScript
|
|
import { Locations } from '../../../imports/api/location.js';
|
||
|
|
|
||
|
|
Template.locMgmtTbl.onCreated(function() {
|
||
|
|
this.subscribe("myLocations");
|
||
|
|
});
|
||
|
|
|
||
|
|
Template.locMgmtTbl.onRendered(function() {
|
||
|
|
|
||
|
|
});
|
||
|
|
|
||
|
|
Template.locMgmtTbl.helpers({
|
||
|
|
locs: function() {
|
||
|
|
return Locations.find({});
|
||
|
|
}
|
||
|
|
});
|
||
|
|
|
||
|
|
Template.locMgmtTbl.events([
|
||
|
|
|
||
|
|
]);
|