mirror of
https://github.com/element-hq/element-web
synced 2024-11-27 03:36:07 +03:00
ElectronPlatform: Implement the isRoomIndexed method.
This commit is contained in:
parent
bf174e3f0f
commit
a968389c85
1 changed files with 4 additions and 0 deletions
|
@ -153,6 +153,10 @@ class SeshatIndexManager extends BaseEventIndexManager {
|
|||
return this._ipcCall('isEventIndexEmpty');
|
||||
}
|
||||
|
||||
async isRoomIndexed(roomId: string): Promise<boolean> {
|
||||
return this._ipcCall('isRoomIndexed', roomId);
|
||||
}
|
||||
|
||||
async commitLiveEvents(): Promise<void> {
|
||||
return this._ipcCall('commitLiveEvents');
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue