mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
Add download button in the SharePlayer
This commit is contained in:
parent
a7d3e6e1f1
commit
b520d8827a
6 changed files with 33 additions and 9 deletions
|
@ -122,8 +122,10 @@ func getIndexTemplate(r *http.Request, fs fs.FS) (*template.Template, error) {
|
|||
}
|
||||
|
||||
type shareData struct {
|
||||
Description string `json:"description"`
|
||||
Tracks []shareTrack `json:"tracks"`
|
||||
ID string `json:"id"`
|
||||
Description string `json:"description"`
|
||||
Downloadable bool `json:"downloadable"`
|
||||
Tracks []shareTrack `json:"tracks"`
|
||||
}
|
||||
|
||||
type shareTrack struct {
|
||||
|
@ -141,7 +143,9 @@ func addShareData(r *http.Request, data map[string]interface{}, shareInfo *model
|
|||
return
|
||||
}
|
||||
sd := shareData{
|
||||
Description: shareInfo.Description,
|
||||
ID: shareInfo.ID,
|
||||
Description: shareInfo.Description,
|
||||
Downloadable: shareInfo.Downloadable,
|
||||
}
|
||||
sd.Tracks = slice.Map(shareInfo.Tracks, func(mf model.MediaFile) shareTrack {
|
||||
return shareTrack{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue