get_my/client/Dashboard/dashboard.js

22 lines
357 B
JavaScript
Raw Normal View History

2022-08-04 19:50:18 -05:00
Template.dashboard.onCreated(function() {
2022-08-04 19:50:18 -05:00
});
Template.dashboard.onRendered(function() {
});
Template.dashboard.helpers({
userCount: function() {
return Meteor.users.find().count();
}
2022-08-04 19:50:18 -05:00
});
Template.dashboard.events({
"click #usermgmtlink" (event) {
event.preventDefault();
FlowRouter.go('/userMgmt');
},
2022-08-04 19:50:18 -05:00
});