available_user_list.js 141 B

12345
  1. Template.available_user_list.helpers({
  2. users: function () {
  3. return Meteor.users.find({}, { sort: { "profile.username": 1 } });
  4. }
  5. });