mirror of
https://github.com/wekan/wekan.git
synced 2026-02-21 15:34:07 +01:00
Part 3 of ReactiveCache async migration: - Add await before all ReactiveCache.getX() calls - Make functions containing ReactiveCache calls async - Convert forEach/map/filter loops with async callbacks to for...of - Update model helpers, Meteor methods, JsonRoutes handlers - Update collection hooks (.before/.after insert/update/remove) - Update .allow() callbacks to async Files updated across models/ and server/ directories: - Model files: cards, boards, lists, swimlanes, activities, users, checklists, checklistItems, customFields, attachments, integrations, cardComments, settings files, creators, exporters, and more - Server files: publications, methods, notifications, routes, migrations
32 lines
705 B
JavaScript
32 lines
705 B
JavaScript
import { ReactiveCache } from '/imports/reactiveCache';
|
|
|
|
Meteor.publish('people', async function(query, limit) {
|
|
check(query, Match.OneOf(Object, null));
|
|
check(limit, Number);
|
|
|
|
let ret = [];
|
|
const user = await ReactiveCache.getCurrentUser();
|
|
|
|
if (user && user.isAdmin) {
|
|
ret = await ReactiveCache.getUsers(query, {
|
|
limit,
|
|
sort: { createdAt: -1 },
|
|
fields: {
|
|
username: 1,
|
|
'profile.fullname': 1,
|
|
'profile.initials': 1,
|
|
isAdmin: 1,
|
|
emails: 1,
|
|
createdAt: 1,
|
|
loginDisabled: 1,
|
|
authenticationMethod: 1,
|
|
importUsernames: 1,
|
|
orgs: 1,
|
|
teams: 1,
|
|
},
|
|
},
|
|
true);
|
|
}
|
|
|
|
return ret;
|
|
});
|