Browse Source

Move every Integrations.find(idOrFirstObjectSelector, options) to the ReactiveCache (directory server/)

Martin Filser 2 years ago
parent
commit
286617e7be
2 changed files with 8 additions and 4 deletions
  1. 1 1
      server/publications/boards.js
  2. 7 3
      server/publications/settings.js

+ 1 - 1
server/publications/boards.js

@@ -222,7 +222,7 @@ Meteor.publishRelations('board', function(boardId, isArchived) {
     function(boardId, board) {
       this.cursor(ReactiveCache.getLists({ boardId, archived: isArchived }, {}, true));
       this.cursor(ReactiveCache.getSwimlanes({ boardId, archived: isArchived }, {}, true));
-      this.cursor(Integrations.find({ boardId }));
+      this.cursor(ReactiveCache.getIntegrations({ boardId }, {}, true));
       this.cursor(CardCommentReactions.find({ boardId }));
       this.cursor(
         ReactiveCache.getCustomFields(

+ 7 - 3
server/publications/settings.js

@@ -2,9 +2,13 @@ import { ReactiveCache } from '/imports/reactiveCache';
 
 Meteor.publish('globalwebhooks', () => {
   const boardId = Integrations.Const.GLOBAL_WEBHOOK_ID;
-  const ret = Integrations.find({
-    boardId,
-  });
+  const ret = ReactiveCache.getIntegrations(
+    {
+      boardId,
+    },
+    {},
+    true,
+  );
   return ret;
 });
 Meteor.publish('setting', () => {