Commit b4df0e73 by Torkel Ödegaard Committed by GitHub

Merge pull request #15706 from grafana/15656-playlists-with-tags-rebased

wip: Fix playlists "by tags"
parents 25b09168 8d5ccc78
...@@ -52,8 +52,10 @@ func populateDashboardsByTag(orgID int64, signedInUser *m.SignedInUser, dashboar ...@@ -52,8 +52,10 @@ func populateDashboardsByTag(orgID int64, signedInUser *m.SignedInUser, dashboar
for _, item := range searchQuery.Result { for _, item := range searchQuery.Result {
result = append(result, dtos.PlaylistDashboard{ result = append(result, dtos.PlaylistDashboard{
Id: item.Id, Id: item.Id,
Slug: item.Slug,
Title: item.Title, Title: item.Title,
Uri: item.Uri, Uri: item.Uri,
Url: m.GetDashboardUrl(item.Uid, item.Slug),
Order: dashboardTagOrder[tag], Order: dashboardTagOrder[tag],
}) })
} }
......
...@@ -17,6 +17,7 @@ type Hit struct { ...@@ -17,6 +17,7 @@ type Hit struct {
Title string `json:"title"` Title string `json:"title"`
Uri string `json:"uri"` Uri string `json:"uri"`
Url string `json:"url"` Url string `json:"url"`
Slug string `json:"slug"`
Type HitType `json:"type"` Type HitType `json:"type"`
Tags []string `json:"tags"` Tags []string `json:"tags"`
IsStarred bool `json:"isStarred"` IsStarred bool `json:"isStarred"`
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment