mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
exclude dashboard field from snapshot list search
This commit is contained in:
parent
002b4d3403
commit
473c47cd1c
@ -73,11 +73,12 @@ type GetDashboardSnapshotQuery struct {
|
||||
}
|
||||
|
||||
type DashboardSnapshots []*DashboardSnapshot
|
||||
type DashboardSnapshotsList []*DashboardSnapshotDTO
|
||||
|
||||
type GetDashboardSnapshotsQuery struct {
|
||||
Name string
|
||||
Limit int
|
||||
OrgId int64
|
||||
|
||||
Result DashboardSnapshots
|
||||
Result DashboardSnapshotsList
|
||||
}
|
||||
|
@ -86,9 +86,10 @@ func GetDashboardSnapshot(query *m.GetDashboardSnapshotQuery) error {
|
||||
}
|
||||
|
||||
func SearchDashboardSnapshots(query *m.GetDashboardSnapshotsQuery) error {
|
||||
var snapshots = make(m.DashboardSnapshots, 0)
|
||||
var snapshots = make(m.DashboardSnapshotsList, 0)
|
||||
|
||||
sess := x.Limit(query.Limit)
|
||||
sess.Table("dashboard_snapshot")
|
||||
|
||||
if query.Name != "" {
|
||||
sess.Where("name LIKE ?", query.Name)
|
||||
|
Loading…
Reference in New Issue
Block a user