mirror of
https://github.com/hcengineering/platform.git
synced 2026-09-13 13:17:45 +02:00
UBER-911: Mentions without second input and tabs (#3798)
Signed-off-by: Maxim Karmatskikh <mkarmatskih@gmail.com>
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user