mirror of
https://gitlab.com/bmcgonag/get_my.git
synced 2026-03-26 15:58:50 +00:00
19 lines
No EOL
359 B
JavaScript
19 lines
No EOL
359 B
JavaScript
import { ServiceEntities } from "../../imports/api/serviceentities";
|
|
|
|
Template.dashboard.onCreated(function() {
|
|
this.subscribe("ServiceEntities");
|
|
});
|
|
|
|
Template.dashboard.onRendered(function() {
|
|
|
|
});
|
|
|
|
Template.dashboard.helpers({
|
|
entityCount: function() {
|
|
return ServiceEntities.find().count();
|
|
},
|
|
});
|
|
|
|
Template.dashboard.events({
|
|
|
|
}); |