Added backend functionality for searching snapshots

This commit is contained in:
utkarshcmu
2016-01-19 01:37:36 -08:00
parent 870775e863
commit 8f067a5ed2
5 changed files with 64 additions and 2 deletions

View File

@@ -47,3 +47,13 @@ type GetDashboardSnapshotQuery struct {
Result *DashboardSnapshot
}
type DashboardSnapshots []*DashboardSnapshot
type GetDashboardSnapshotsQuery struct {
Name string
Limit int
OrgId int64
Result DashboardSnapshots
}