Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
b4df0e73
Unverified
Commit
b4df0e73
authored
Mar 04, 2019
by
Torkel Ödegaard
Committed by
GitHub
Mar 04, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #15706 from grafana/15656-playlists-with-tags-rebased
wip: Fix playlists "by tags"
parents
25b09168
8d5ccc78
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
0 deletions
+3
-0
pkg/api/playlist_play.go
+2
-0
pkg/services/search/models.go
+1
-0
No files found.
pkg/api/playlist_play.go
View file @
b4df0e73
...
@@ -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
],
})
})
}
}
...
...
pkg/services/search/models.go
View file @
b4df0e73
...
@@ -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"`
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment