2023-01-15 01:11:16 +01:00
|
|
|
import { ReactiveCache } from '/imports/reactiveCache';
|
|
|
|
|
|
Update ReactiveCache call sites to use async/await for Meteor 3.0
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
2026-02-01 00:54:38 +02:00
|
|
|
Meteor.publish('org', async function(query, limit) {
|
2020-12-28 21:08:27 +02:00
|
|
|
check(query, Match.OneOf(Object, null));
|
|
|
|
|
check(limit, Number);
|
|
|
|
|
|
2023-03-11 19:32:16 +01:00
|
|
|
let ret = [];
|
Update ReactiveCache call sites to use async/await for Meteor 3.0
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
2026-02-01 00:54:38 +02:00
|
|
|
const user = await ReactiveCache.getCurrentUser();
|
2020-12-28 21:08:27 +02:00
|
|
|
|
|
|
|
|
if (user && user.isAdmin) {
|
Update ReactiveCache call sites to use async/await for Meteor 3.0
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
2026-02-01 00:54:38 +02:00
|
|
|
ret = await ReactiveCache.getOrgs(query,
|
2023-03-12 18:14:55 +01:00
|
|
|
{
|
|
|
|
|
limit,
|
|
|
|
|
sort: { createdAt: -1 },
|
|
|
|
|
fields: {
|
|
|
|
|
orgDisplayName: 1,
|
|
|
|
|
orgDesc: 1,
|
|
|
|
|
orgShortName: 1,
|
2023-11-20 00:02:19 +02:00
|
|
|
orgAutoAddUsersWithDomainName: 1,
|
2023-03-12 18:14:55 +01:00
|
|
|
orgWebsite: 1,
|
|
|
|
|
orgTeams: 1,
|
|
|
|
|
createdAt: 1,
|
|
|
|
|
orgIsActive: 1,
|
|
|
|
|
}
|
2020-12-28 21:08:27 +02:00
|
|
|
},
|
2023-03-12 18:14:55 +01:00
|
|
|
true,
|
|
|
|
|
);
|
2020-12-28 21:08:27 +02:00
|
|
|
}
|
|
|
|
|
|
2023-03-11 19:32:16 +01:00
|
|
|
return ret;
|
2020-12-28 21:08:27 +02:00
|
|
|
});
|