mirror of
https://gitlab.com/bmcgonag/get_my.git
synced 2026-03-27 00:08:49 +00:00
22 lines
No EOL
388 B
JavaScript
22 lines
No EOL
388 B
JavaScript
|
|
|
|
Template.dashboard.onCreated(function() {
|
|
this.subscribe("userList");
|
|
});
|
|
|
|
Template.dashboard.onRendered(function() {
|
|
|
|
});
|
|
|
|
Template.dashboard.helpers({
|
|
userCount: function() {
|
|
return Meteor.users.find().count();
|
|
}
|
|
});
|
|
|
|
Template.dashboard.events({
|
|
"click #usermgmtlink" (event) {
|
|
event.preventDefault();
|
|
FlowRouter.go('/userMgmt');
|
|
},
|
|
}); |