Chore: Rename dashboardUID to dashboardUIDs in search endpoint and up… (#52766)

* Chore: Rename dashboardUID to dashboardUIDs in search endpoint and update doc

* make it backward compatible
This commit is contained in:
ying-jeanne
2022-07-26 22:28:14 -04:00
committed by GitHub
parent 7da0a6d3ce
commit 86283bb99e
5 changed files with 29 additions and 1 deletions
+4
View File
@@ -42,6 +42,10 @@ type SearchParams struct {
// in:query
// required: false
DashboardIds []int64 `json:"dashboardIds"`
// List of dashboard uids to search for
// in:query
// required: false
DashboardUIDs []string `json:"dashboardUIDs"`
// List of folder ids to search in for dashboards
// in:query
// required: false
+5 -1
View File
@@ -39,7 +39,11 @@ func (hs *HTTPServer) Search(c *models.ReqContext) response.Response {
}
}
dbUIDs := c.QueryStrings("dashboardUID")
dbUIDs := c.QueryStrings("dashboardUIDs")
if len(dbUIDs) == 0 {
// To keep it for now backward compatible for grafana 9
dbUIDs = c.QueryStrings("dashboardUID")
}
folderIDs := make([]int64, 0)
for _, id := range c.QueryStrings("folderIds") {