mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Return playlist duration in getPlayList
This commit is contained in:
parent
dce2a1399d
commit
d4adc784cc
3 changed files with 26 additions and 14 deletions
|
@ -4,7 +4,6 @@ type Playlist struct {
|
|||
ID string
|
||||
Name string
|
||||
Comment string
|
||||
FullPath string
|
||||
Duration int
|
||||
Owner string
|
||||
Public bool
|
||||
|
@ -16,6 +15,7 @@ type PlaylistRepository interface {
|
|||
Exists(id string) (bool, error)
|
||||
Put(pls *Playlist) error
|
||||
Get(id string) (*Playlist, error)
|
||||
GetWithTracks(id string) (*Playlist, error)
|
||||
GetAll(options ...QueryOptions) (Playlists, error)
|
||||
Delete(id string) error
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue