wekan/server/publications/users.js

31 lines
663 B
JavaScript
Raw Normal View History

Meteor.publish('user-miniprofile', function(usernames) {
check(usernames, Array);
// eslint-disable-next-line no-console
// console.log('usernames:', usernames);
return Users.find(
{ username: { $in: usernames } },
{ fields: Users.safeFields },
);
});
Meteor.publish('user-admin', function() {
return Meteor.users.find(this.userId, {
fields: {
isAdmin: 1,
},
});
});
Meteor.publish('user-authenticationMethod', function(match) {
check(match, String);
2019-06-28 12:52:09 -05:00
return Users.find(
{ $or: [{ _id: match }, { email: match }, { username: match }] },
{
fields: {
authenticationMethod: 1,
},
},
2019-06-28 12:52:09 -05:00
);
});