Dashboards: Allow to retrieve dashboards by uid (#48522)

* Add the possibility to get the dashboards by uid

* Fix
This commit is contained in:
Selene
2022-05-17 09:37:44 +02:00
committed by GitHub
parent 84d4ce51ad
commit 43e34f3086
2 changed files with 13 additions and 4 deletions
+3 -2
View File
@@ -435,8 +435,9 @@ type GetDashboardTagsQuery struct {
}
type GetDashboardsQuery struct {
DashboardIds []int64
Result []*Dashboard
DashboardIds []int64
DashboardUIds []string
Result []*Dashboard
}
type GetDashboardPermissionsForUserQuery struct {