mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Initial support for playlists. Missing permissions
This commit is contained in:
parent
3a44f37622
commit
57fcdac428
6 changed files with 117 additions and 36 deletions
|
@ -8,15 +8,16 @@ type Playlist struct {
|
|||
Duration int
|
||||
Owner string
|
||||
Public bool
|
||||
Tracks []string
|
||||
Tracks MediaFiles
|
||||
}
|
||||
|
||||
type PlaylistRepository interface {
|
||||
CountAll() (int64, error)
|
||||
Exists(id string) (bool, error)
|
||||
Put(m *Playlist) error
|
||||
Put(pls *Playlist) error
|
||||
Get(id string) (*Playlist, error)
|
||||
GetAll(options ...QueryOptions) (Playlists, error)
|
||||
Delete(id string) error
|
||||
}
|
||||
|
||||
type Playlists []Playlist
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue