UBER-911: Mentions without second input and tabs (#3798)

Signed-off-by: Maxim Karmatskikh <mkarmatskih@gmail.com>
This commit is contained in:
Maksim Karmatskikh
2023-11-17 14:35:09 +07:00
committed by GitHub
parent f0ba202f28
commit af5c79c928
61 changed files with 1577 additions and 121 deletions
+12 -1
View File
@@ -27,7 +27,10 @@ import core, {
Ref,
Tx,
TxResult,
WithLookup
WithLookup,
SearchQuery,
SearchOptions,
SearchResult
} from '@hcengineering/core'
import { devModelId } from '@hcengineering/devmodel'
import { Builder } from '@hcengineering/model'
@@ -123,6 +126,14 @@ class ModelClient implements AccountClient {
return result
}
async searchFulltext (query: SearchQuery, options: SearchOptions): Promise<SearchResult> {
const result = await this.client.searchFulltext(query, options)
if (this.notifyEnabled) {
console.debug('devmodel# searchFulltext=>', query, options, 'result => ', result)
}
return result
}
async tx (tx: Tx): Promise<TxResult> {
const result = await this.client.tx(tx)
if (this.notifyEnabled) {