[management] Document false and omitted behavior for dashboard_features.agent_network

This commit is contained in:
mlsmaycon
2026-07-12 19:16:22 +02:00
parent 8639e9963f
commit 1e1d20bbe8
2 changed files with 2 additions and 2 deletions

View File

@@ -414,7 +414,7 @@ components:
type: object
properties:
agent_network:
description: When true, the Agent Network menu is shown for the account even without the deployment feature flag.
description: Controls the Agent Network menu for the account regardless of the deployment feature flag. When true the menu is shown, when false it is hidden, and when omitted the default behavior applies.
type: boolean
example: true
AccountExtraSettings:

View File

@@ -1614,7 +1614,7 @@ type Account struct {
// AccountDashboardFeatures Per-account dashboard section visibility overrides. Omitted keys follow the default dashboard behavior.
type AccountDashboardFeatures struct {
// AgentNetwork When true, the Agent Network menu is shown for the account even without the deployment feature flag.
// AgentNetwork Controls the Agent Network menu for the account regardless of the deployment feature flag. When true the menu is shown, when false it is hidden, and when omitted the default behavior applies.
AgentNetwork *bool `json:"agent_network,omitempty"`
}