Worked on search filter flag IsStarred, and updated frontend with new dashboard list panel

This commit is contained in:
Torkel Ödegaard
2015-02-04 11:35:59 +01:00
parent f0b13153ac
commit 60541a455f
11 changed files with 99 additions and 33 deletions
+3
View File
@@ -11,6 +11,7 @@ type DashboardSearchHit struct {
Title string `json:"title"`
Slug string `json:"slug"`
Tags []string `json:"tags"`
Url string `json:"url"`
}
type DashboardTagCloudItem struct {
@@ -22,6 +23,8 @@ type SearchDashboardsQuery struct {
Title string
Tag string
AccountId int64
UserId int64
IsStarred bool
Result []*DashboardSearchHit
}