From 2a6d7815531f3095a439ec75e4e1337322962044 Mon Sep 17 00:00:00 2001 From: madhavilosetty-intel Date: Wed, 6 Nov 2024 09:03:16 -0700 Subject: [PATCH] feat: added Wireless Synchronization to v2 config (#436) --- pkg/config/v2.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkg/config/v2.go b/pkg/config/v2.go index a34d1d0c..a0517772 100644 --- a/pkg/config/v2.go +++ b/pkg/config/v2.go @@ -44,7 +44,8 @@ type Wired struct { } type Wireless struct { - Profiles []WirelessProfile `yaml:"profiles"` + WiFiSyncEnabled bool `yaml:"wifiSyncEnabled"` + Profiles []WirelessProfile `yaml:"profiles"` } type WirelessProfile struct {