get_my/client/AdminMgmt/LocationMgmt/locMgmtTbl.js

19 lines
332 B
JavaScript
Raw Normal View History

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([
]);