mirror of
https://github.com/wekan/wekan.git
synced 2026-03-13 17:06:13 +01:00
Move every Integrations.find(idOrFirstObjectSelector, options) to the ReactiveCache (directory server/)
This commit is contained in:
parent
a423f7883e
commit
286617e7be
2 changed files with 8 additions and 4 deletions
|
|
@ -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', () => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue