summaryrefslogtreecommitdiffhomepage
path: root/gui/src/shared
diff options
context:
space:
mode:
authorOskar Nyberg <oskar@mullvad.net>2022-04-01 09:46:53 +0200
committerOskar Nyberg <oskar@mullvad.net>2022-04-05 16:05:32 +0200
commit096b5e5c3ce65214be615e135fde9320fa2c1437 (patch)
treea6b6782f63157553d9f8d25179f84be5a0955ff4 /gui/src/shared
parent3640e7731c8855de871c7d1af97a8d07414a4913 (diff)
downloadmullvadvpn-096b5e5c3ce65214be615e135fde9320fa2c1437.tar.xz
mullvadvpn-096b5e5c3ce65214be615e135fde9320fa2c1437.zip
Add information about post upgrade tasks in UI
Diffstat (limited to 'gui/src/shared')
-rw-r--r--gui/src/shared/ipc-schema.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/gui/src/shared/ipc-schema.ts b/gui/src/shared/ipc-schema.ts
index 1700ddc606..ce517c8f21 100644
--- a/gui/src/shared/ipc-schema.ts
+++ b/gui/src/shared/ipc-schema.ts
@@ -55,6 +55,7 @@ export interface IAppStateSnapshot {
accountHistory?: AccountToken;
tunnelState: TunnelState;
settings: ISettings;
+ isPerformingPostUpgrade: boolean;
deviceConfig?: IDeviceConfig;
hasReceivedDeviceConfig: boolean;
relayListPair: IRelayListPair;
@@ -119,6 +120,7 @@ export const ipcSchema = {
reset: notifyRenderer<void>(),
},
daemon: {
+ isPerformingPostUpgrade: notifyRenderer<boolean>(),
connected: notifyRenderer<void>(),
disconnected: notifyRenderer<void>(),
},