diff options
| author | Oskar Nyberg <oskar@mullvad.net> | 2020-12-10 13:28:22 +0100 |
|---|---|---|
| committer | Oskar Nyberg <oskar@mullvad.net> | 2020-12-10 13:28:22 +0100 |
| commit | a832f6f3628272166d7232e839b4fc5091ecdafd (patch) | |
| tree | 408d279f13563c86ef3b1bee505329eddb829ee5 /gui/src/shared | |
| parent | ae3cae40c16b01683b2a562ac48799699c711ca2 (diff) | |
| parent | 8f4698a13622d6e34e47c5c2a2d043ffd1276e95 (diff) | |
| download | mullvadvpn-a832f6f3628272166d7232e839b4fc5091ecdafd.tar.xz mullvadvpn-a832f6f3628272166d7232e839b4fc5091ecdafd.zip | |
Merge branch 'remove-use-of-legacy-ipc-calls'
Diffstat (limited to 'gui/src/shared')
| -rw-r--r-- | gui/src/shared/ipc-event-channel.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gui/src/shared/ipc-event-channel.ts b/gui/src/shared/ipc-event-channel.ts index 11bbeef31f..b18e47e9f9 100644 --- a/gui/src/shared/ipc-event-channel.ts +++ b/gui/src/shared/ipc-event-channel.ts @@ -172,6 +172,10 @@ const ipc = { getApplications: invoke<void, ISplitTunnelingApplication[]>(), launchApplication: invoke<ISplitTunnelingApplication | string, void>(), }, + problemReport: { + collectLogs: invoke<string[], string>(), + sendReport: invoke<{ email: string; message: string; savedReport: string }, void>(), + }, }; export const IpcMainEventChannel = createIpcMain(ipc); |
