New chat & inbox (#8328)

Signed-off-by: Kristina Fefelova <kristin.fefelova@gmail.com>
This commit is contained in:
Kristina
2025-03-31 17:09:09 +07:00
committed by GitHub
parent bacf563d85
commit af9bb74670
269 changed files with 10369 additions and 258 deletions
+4 -4
View File
@@ -15,11 +15,11 @@
//
import core, {
DOMAIN_TX,
type BackupClient,
type Class,
type Client as CoreClient,
type Doc,
DOMAIN_TX,
type MeasureContext,
type Ref,
type Tx,
@@ -32,9 +32,9 @@ import { getMongoClient, getWorkspaceMongoDB } from '@hcengineering/mongo'
import { createStorageBackupStorage, restore } from '@hcengineering/server-backup'
import {
createDummyStorageAdapter,
wrapPipeline,
type PipelineFactory,
type StorageAdapter
type StorageAdapter,
wrapPipeline
} from '@hcengineering/server-core'
import { createStorageFromConfig, storageConfigFromEnv } from '@hcengineering/server-storage'
import { connect } from '@hcengineering/server-tool'
@@ -164,7 +164,7 @@ export async function backupRestore (
recheck: false,
storageAdapter: workspaceStorage,
getConnection: async () => {
return wrapPipeline(ctx, await pipelineFactory(ctx, wsUrl, true, () => {}, null), wsUrl)
return wrapPipeline(ctx, await pipelineFactory(ctx, wsUrl, true, () => {}, null, null), wsUrl)
}
})
)