From 1e1d20bbe8e7d01eb156d723a3db7c45baeaae05 Mon Sep 17 00:00:00 2001 From: mlsmaycon Date: Sun, 12 Jul 2026 19:16:22 +0200 Subject: [PATCH] [management] Document false and omitted behavior for dashboard_features.agent_network --- shared/management/http/api/openapi.yml | 2 +- shared/management/http/api/types.gen.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/shared/management/http/api/openapi.yml b/shared/management/http/api/openapi.yml index 29512fedb..c61dbd2f8 100644 --- a/shared/management/http/api/openapi.yml +++ b/shared/management/http/api/openapi.yml @@ -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: diff --git a/shared/management/http/api/types.gen.go b/shared/management/http/api/types.gen.go index d60ca1160..6fc17ef60 100644 --- a/shared/management/http/api/types.gen.go +++ b/shared/management/http/api/types.gen.go @@ -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"` }