mirror of
https://github.com/wekan/wekan.git
synced 2026-02-21 07:24: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
40 lines
991 B
JavaScript
40 lines
991 B
JavaScript
import { ReactiveCache } from '/imports/reactiveCache';
|
|
import { Meteor } from 'meteor/meteor';
|
|
|
|
Actions = new Mongo.Collection('actions');
|
|
|
|
Actions.allow({
|
|
async insert(userId, doc) {
|
|
return allowIsBoardAdmin(userId, await ReactiveCache.getBoard(doc.boardId));
|
|
},
|
|
async update(userId, doc) {
|
|
return allowIsBoardAdmin(userId, await ReactiveCache.getBoard(doc.boardId));
|
|
},
|
|
async remove(userId, doc) {
|
|
return allowIsBoardAdmin(userId, await ReactiveCache.getBoard(doc.boardId));
|
|
},
|
|
});
|
|
|
|
Actions.before.insert((userId, doc) => {
|
|
doc.createdAt = new Date();
|
|
doc.modifiedAt = doc.createdAt;
|
|
});
|
|
|
|
Actions.before.update((userId, doc, fieldNames, modifier) => {
|
|
modifier.$set = modifier.$set || {};
|
|
modifier.$set.modifiedAt = new Date();
|
|
});
|
|
|
|
Actions.helpers({
|
|
description() {
|
|
return this.desc;
|
|
},
|
|
});
|
|
|
|
if (Meteor.isServer) {
|
|
Meteor.startup(async () => {
|
|
await Actions._collection.createIndexAsync({ modifiedAt: -1 });
|
|
});
|
|
}
|
|
|
|
export default Actions;
|