Skip to content

Commit 91a30e4

Browse files
fixup: nest AGENT_TUNNEL_FEATURE under AGENT_FEATURE in Features tree
1 parent bae944a commit 91a30e4

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

package/AgentWindowsManaged/Resources/Features.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,16 @@ internal static class Features
1717
Id = $"{FEATURE_ID_PREFIX}Updater"
1818
};
1919

20+
internal static Feature AGENT_TUNNEL_FEATURE = new("!(loc.FeatureAgentTunnelName)", "!(loc.FeatureAgentTunnelDescription)", isEnabled: false, allowChange: true)
21+
{
22+
Id = $"{FEATURE_ID_PREFIX}Tunnel"
23+
};
24+
2025
internal static Feature AGENT_FEATURE = new("!(loc.FeatureAgentName)", isEnabled: true, allowChange: false)
2126
{
22-
Id = $"{FEATURE_ID_PREFIX}Agent",
27+
Id = $"{FEATURE_ID_PREFIX}Agent",
2328
Description = "!(loc.FeatureAgentDescription)",
24-
Children = [ AGENT_UPDATER_FEATURE ]
29+
Children = [ AGENT_UPDATER_FEATURE, AGENT_TUNNEL_FEATURE ]
2530
};
2631

2732
internal static Feature PEDM_FEATURE = new("!(loc.FeaturePedmName)", "!(loc.FeaturePedmDescription)", isEnabled: false)
@@ -33,11 +38,6 @@ internal static class Features
3338
{
3439
Id = $"{FEATURE_ID_PREFIX}Session"
3540
};
36-
37-
internal static Feature AGENT_TUNNEL_FEATURE = new("!(loc.FeatureAgentTunnelName)", "!(loc.FeatureAgentTunnelDescription)", isEnabled: false, allowChange: true)
38-
{
39-
Id = $"{FEATURE_ID_PREFIX}Tunnel"
40-
};
4141
}
4242

4343
internal class FeatureList

0 commit comments

Comments
 (0)