Add dev menu to import local backup

This commit is contained in:
ayumi-signal
2025-05-19 16:32:06 -07:00
committed by GitHub
parent efa9102a1b
commit c10d59458f
13 changed files with 41 additions and 89 deletions

View File

@@ -279,6 +279,10 @@ ipc.on('set-up-as-standalone', () => {
window.Whisper.events.trigger('setupAsStandalone');
});
ipc.on('stage-local-backup-for-import', () => {
window.Whisper.events.trigger('stageLocalBackupForImport');
});
ipc.on('challenge:response', (_event, response) => {
window.Whisper.events.trigger('challengeResponse', response);
});

View File

@@ -115,6 +115,7 @@ window.testUtilities = {
development: false,
devTools: false,
includeSetup: false,
isNightly: false,
isProduction: false,
platform: 'test',
},