diff options
| author | Emīls Piņķis <emils@mullvad.net> | 2019-03-06 18:51:22 +0000 |
|---|---|---|
| committer | Emīls Piņķis <emils@mullvad.net> | 2019-03-07 11:26:29 +0000 |
| commit | ee945c99ca0a2ff42efd8e36443d8e93caaece58 (patch) | |
| tree | 5815e6e1702cfe7315659752e9fa8652687b7494 /gui/src/shared | |
| parent | 418760ab66d2b6d9d1ccae0acd70df84b4390591 (diff) | |
| download | mullvadvpn-ee945c99ca0a2ff42efd8e36443d8e93caaece58.tar.xz mullvadvpn-ee945c99ca0a2ff42efd8e36443d8e93caaece58.zip | |
Fix custom relay settings schema in daemon-rpc.ts
Diffstat (limited to 'gui/src/shared')
| -rw-r--r-- | gui/src/shared/daemon-rpc-types.ts | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gui/src/shared/daemon-rpc-types.ts b/gui/src/shared/daemon-rpc-types.ts index 2158926300..a2cd296c0c 100644 --- a/gui/src/shared/daemon-rpc-types.ts +++ b/gui/src/shared/daemon-rpc-types.ts @@ -90,15 +90,16 @@ export type ConnectionConfig = | { wireguard: { tunnel: { - private_key: string; + privateKey: string; addresses: string[]; }; peer: { - public_key: string; + publicKey: string; addresses: string[]; endpoint: string; }; - gateway: string; + ipv4Gateway: string; + ipv6Gateway?: string; }; }; |
