mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-05 13:37:38 +03:00
getArtist.view implemented
This commit is contained in:
parent
0a137657fe
commit
94d76cb212
5 changed files with 92 additions and 2 deletions
|
@ -142,6 +142,20 @@ func (c *BaseAPIController) ToChildren(entries engine.Entries) []responses.Child
|
|||
return children
|
||||
}
|
||||
|
||||
func (c *BaseAPIController) ToAlbums(entries engine.Entries) []responses.Child {
|
||||
children := make([]responses.Child, len(entries))
|
||||
for i, entry := range entries {
|
||||
children[i] = c.ToAlbum(entry)
|
||||
}
|
||||
return children
|
||||
}
|
||||
|
||||
func (c *BaseAPIController) ToAlbum(entry engine.Entry) responses.Child {
|
||||
album := c.ToChild(entry)
|
||||
album.Name = album.Title
|
||||
return album
|
||||
}
|
||||
|
||||
func (c *BaseAPIController) ToChild(entry engine.Entry) responses.Child {
|
||||
child := responses.Child{}
|
||||
child.Id = entry.Id
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue