|
@@ -8,21 +8,19 @@ Meteor.publish('people', function(query, limit) {
|
|
|
|
|
|
const user = Users.findOne(this.userId);
|
|
|
if (user && user.isAdmin) {
|
|
|
- return Users.find(
|
|
|
- query,
|
|
|
- {
|
|
|
- limit,
|
|
|
- sort: { createdAt: -1 },
|
|
|
- fields: {
|
|
|
- username: 1,
|
|
|
- 'profile.fullname': 1,
|
|
|
- isAdmin: 1,
|
|
|
- emails: 1,
|
|
|
- createdAt: 1,
|
|
|
- loginDisabled: 1,
|
|
|
- authenticationMethod: 1,
|
|
|
- },
|
|
|
- });
|
|
|
+ return Users.find(query, {
|
|
|
+ limit,
|
|
|
+ sort: { createdAt: -1 },
|
|
|
+ fields: {
|
|
|
+ username: 1,
|
|
|
+ 'profile.fullname': 1,
|
|
|
+ isAdmin: 1,
|
|
|
+ emails: 1,
|
|
|
+ createdAt: 1,
|
|
|
+ loginDisabled: 1,
|
|
|
+ authenticationMethod: 1,
|
|
|
+ },
|
|
|
+ });
|
|
|
}
|
|
|
|
|
|
return [];
|