mirror of
https://github.com/netbirdio/netbird.git
synced 2026-08-30 11:31:29 +02:00
Removes --disable-advanced-settings
It was a typo in our meetings. the actual thing is --disable-update-settings
This commit is contained in:
@@ -20,7 +20,6 @@ import (
|
||||
// configuration field.
|
||||
const (
|
||||
KeyManagementURL = "managementURL"
|
||||
KeyDisableAdvancedSettings = "disableAdvancedSettings"
|
||||
KeyDisableUpdateSettings = "disableUpdateSettings"
|
||||
KeyDisableProfiles = "disableProfiles"
|
||||
KeyDisableNetworks = "disableNetworks"
|
||||
@@ -54,7 +53,6 @@ const (
|
||||
// configuration are ignored but logged.
|
||||
var AllKeys = []string{
|
||||
KeyManagementURL,
|
||||
KeyDisableAdvancedSettings,
|
||||
KeyDisableUpdateSettings,
|
||||
KeyDisableProfiles,
|
||||
KeyDisableNetworks,
|
||||
|
||||
@@ -1702,16 +1702,6 @@ func (s *Server) GetFeatures(ctx context.Context, msg *proto.GetFeaturesRequest)
|
||||
DisableNetworks: s.checkNetworksDisabled(),
|
||||
}
|
||||
|
||||
// MDM kill switch: read the value from the active policy on the
|
||||
// in-memory Config snapshot. Returns false on an absent key, so the
|
||||
// feature flag is only "true" when the admin has explicitly pushed
|
||||
// disableAdvancedSettings=true via the platform MDM channel.
|
||||
if s.config != nil {
|
||||
if v, ok := s.config.Policy().GetBool(mdm.KeyDisableAdvancedSettings); ok {
|
||||
features.DisableAdvancedSettings = v
|
||||
}
|
||||
}
|
||||
|
||||
return features, nil
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user