Disable message insert triggers during backup import

This commit is contained in:
trevor-signal 2024-11-27 13:34:02 -05:00 committed by GitHub
parent 7dced11b57
commit 34ef8dc2c8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 101 additions and 1 deletions

View file

@ -952,6 +952,10 @@ type WritableInterface = {
insertJob(job: Readonly<StoredJob>): void;
deleteJob(id: string): void;
disableMessageInsertTriggers(): void;
enableMessageInsertTriggersAndBackfill(): void;
ensureMessageInsertTriggersAreEnabled(): void;
processGroupCallRingCancellation(ringId: bigint): void;
cleanExpiredGroupCallRingCancellations(): void;
};