mirror of
https://github.com/element-hq/element-web
synced 2024-11-27 19:56:47 +03:00
BasePlatform: Add prototype methods for event indexing.
This commit is contained in:
parent
6e33cc0650
commit
b8a3ee1841
1 changed files with 40 additions and 0 deletions
|
@ -151,4 +151,44 @@ export default class BasePlatform {
|
|||
async setMinimizeToTrayEnabled(enabled: boolean): void {
|
||||
throw new Error("Unimplemented");
|
||||
}
|
||||
|
||||
supportsEventIndexing(): boolean {
|
||||
return false;
|
||||
}
|
||||
|
||||
async initEventIndex(userId: string): boolean {
|
||||
throw new Error("Unimplemented");
|
||||
}
|
||||
|
||||
async addEventToIndex(ev: {}, profile: {}): void {
|
||||
throw new Error("Unimplemented");
|
||||
}
|
||||
|
||||
indexIsEmpty(): Promise<boolean> {
|
||||
throw new Error("Unimplemented");
|
||||
}
|
||||
|
||||
async commitLiveEvents(): void {
|
||||
throw new Error("Unimplemented");
|
||||
}
|
||||
|
||||
async searchEventIndex(term: string): Promise<{}> {
|
||||
throw new Error("Unimplemented");
|
||||
}
|
||||
|
||||
async addHistoricEvents(events: [], checkpoint: {} = null, oldCheckpoint: {} = null): Promise<bool> {
|
||||
throw new Error("Unimplemented");
|
||||
}
|
||||
|
||||
async addCrawlerCheckpoint(checkpoint: {}): Promise<> {
|
||||
throw new Error("Unimplemented");
|
||||
}
|
||||
|
||||
async removeCrawlerCheckpoint(checkpoint: {}): Promise<> {
|
||||
throw new Error("Unimplemented");
|
||||
}
|
||||
|
||||
async deleteEventIndex(): Promise<> {
|
||||
throw new Error("Unimplemented");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue