summaryrefslogtreecommitdiffstats
path: root/server/publications/people.js
blob: f3c2bdfec6d17757c9dbd9dd6c1a5dac87c64db7 (plain)
1
2
3
4
5
6
7
Meteor.publish('people', (limit) => {
  check(limit, Number);
  return Users.find({}, {
    limit,
    sort: {createdAt: -1},
  });
});