From 205f8a89f810932722686e7595df85976259a460 Mon Sep 17 00:00:00 2001 From: proddy Date: Tue, 7 Jul 2020 23:34:05 +0200 Subject: [PATCH] AP IP configurable --- interface/src/ap/types.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/interface/src/ap/types.ts b/interface/src/ap/types.ts index a3b80aee8..437d0e63c 100644 --- a/interface/src/ap/types.ts +++ b/interface/src/ap/types.ts @@ -21,4 +21,7 @@ export interface APSettings { provision_mode: APProvisionMode; ssid: string; password: string; + local_ip: string; + gateway_ip: string; + subnet_mask: string; }