Fix Bitrix attachments (#2683)

Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
This commit is contained in:
Andrey Sobolev
2023-02-24 15:04:03 +07:00
committed by GitHub
parent a01b7e5d6c
commit 96f0fef450
10 changed files with 84 additions and 63 deletions
+2 -2
View File
@@ -28,7 +28,7 @@ import {
Ref,
ServerStorage,
Tx,
TxHander,
TxHandler,
TxResult
} from '@hcengineering/core'
import { createInMemoryTxAdapter } from '@hcengineering/dev-storage'
@@ -45,7 +45,7 @@ import {
class ServerStorageWrapper implements ClientConnection {
measureCtx = new MeasureMetricsContext('client', {})
constructor (private readonly storage: ServerStorage, private readonly handler: TxHander) {}
constructor (private readonly storage: ServerStorage, private readonly handler: TxHandler) {}
findAll<T extends Doc>(
_class: Ref<Class<T>>,