mirror of
https://github.com/wekan/wekan.git
synced 2025-12-24 03:10:12 +01:00
4 lines
88 B
JavaScript
4 lines
88 B
JavaScript
|
|
Meteor.publish('people', function () {
|
||
|
|
return Meteor.users.find({}, {fields:{}});
|
||
|
|
});
|