Merge remote-tracking branch 'origin/develop'

Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
This commit is contained in:
Andrey Sobolev 2024-08-29 00:17:20 +07:00
commit b9696ac987
No known key found for this signature in database
GPG Key ID: BD80F68D68D8F7F2

View File

@ -57,8 +57,14 @@ export function createModel (builder: Builder): void {
builder.createDoc(serverCore.class.Trigger, core.space.Model, { builder.createDoc(serverCore.class.Trigger, core.space.Model, {
trigger: serverActivity.trigger.ReferenceTrigger, trigger: serverActivity.trigger.ReferenceTrigger,
txMatch: { txMatch: {
'tx.objectClass': { $ne: activity.class.ActivityMessage }, 'tx.objectClass': { $ne: activity.class.ActivityReference },
objectClass: { $nin: [notification.class.InboxNotification, notification.class.DocNotifyContext] } objectClass: {
$nin: [
notification.class.InboxNotification,
notification.class.DocNotifyContext,
notification.class.BrowserNotification
]
}
}, },
isAsync: true isAsync: true
}) })