Add OnLabelDelete trigger (#1576)

Signed-off-by: Dvinyanin Alexandr <dvinyanin.alexandr@gmail.com>
This commit is contained in:
Alex
2022-04-28 17:01:20 +07:00
committed by GitHub
parent bde8549e5d
commit 83e8963e38
30 changed files with 451 additions and 24 deletions
+2
View File
@@ -43,6 +43,8 @@
"@anticrm/server-ws": "~0.6.11",
"@anticrm/server-attachment": "~0.6.1",
"@anticrm/server-attachment-resources": "~0.6.0",
"@anticrm/server-board": "~0.6.0",
"@anticrm/server-board-resources": "~0.6.0",
"@anticrm/mongo": "~0.6.1",
"@anticrm/elastic": "~0.6.0",
"elastic-apm-node": "~3.26.0",
+2
View File
@@ -32,6 +32,7 @@ import { PrivateMiddleware, ModifiedMiddleware } from '@anticrm/middleware'
import { createMongoAdapter, createMongoTxAdapter } from '@anticrm/mongo'
import { addLocation } from '@anticrm/platform'
import { serverAttachmentId } from '@anticrm/server-attachment'
import { serverBoardId } from '@anticrm/server-board'
import { serverCalendarId } from '@anticrm/server-calendar'
import { serverChunterId } from '@anticrm/server-chunter'
import { serverContactId } from '@anticrm/server-contact'
@@ -90,6 +91,7 @@ export function start (
host?: string
): () => void {
addLocation(serverAttachmentId, () => import('@anticrm/server-attachment-resources'))
addLocation(serverBoardId, () => import('@anticrm/server-board-resources'))
addLocation(serverContactId, () => import('@anticrm/server-contact-resources'))
addLocation(serverNotificationId, () => import('@anticrm/server-notification-resources'))
addLocation(serverSettingId, () => import('@anticrm/server-setting-resources'))