refactor: rename Data Connections to Connections (#56353)

This commit is contained in:
Levente Balogh
2022-10-05 09:56:58 +02:00
committed by GitHub
parent b1b3f9e24c
commit ae5e8bc53b
19 changed files with 162 additions and 162 deletions
+1 -1
View File
@@ -249,7 +249,7 @@ var (
},
{
Name: "dataConnectionsConsole",
Description: "Enables a new top-level page called Data Connections. This page is an experiment for better grouping of installing / configuring data sources and other plugins.",
Description: "Enables a new top-level page called Connections. This page is an experiment for better grouping of installing / configuring data sources and other plugins.",
State: FeatureStateAlpha,
},
{
+1 -1
View File
@@ -184,7 +184,7 @@ const (
FlagLogRequestsInstrumentedAsUnknown = "logRequestsInstrumentedAsUnknown"
// FlagDataConnectionsConsole
// Enables a new top-level page called Data Connections. This page is an experiment for better grouping of installing / configuring data sources and other plugins.
// Enables a new top-level page called Connections. This page is an experiment for better grouping of installing / configuring data sources and other plugins.
FlagDataConnectionsConsole = "dataConnectionsConsole"
// FlagInternationalization
+2 -2
View File
@@ -508,7 +508,7 @@ func (s *ServiceImpl) buildDataConnectionsNavLink(c *models.ReqContext) *navtree
var children []*navtree.NavLink
var navLink *navtree.NavLink
baseId := "data-connections"
baseId := "connections"
baseUrl := s.cfg.AppSubURL + "/" + baseId
children = append(children, &navtree.NavLink{
@@ -536,7 +536,7 @@ func (s *ServiceImpl) buildDataConnectionsNavLink(c *models.ReqContext) *navtree
})
navLink = &navtree.NavLink{
Text: "Data Connections",
Text: "Connections",
Icon: "link",
Id: baseId,
Url: baseUrl,