Load SmartPlaylists rules from DB

This commit is contained in:
Deluan 2021-10-14 18:39:17 -04:00 committed by Deluan Quintão
parent 7221b49b98
commit 815623715e
4 changed files with 84 additions and 38 deletions

View file

@ -20,8 +20,8 @@ type Playlist struct {
UpdatedAt time.Time `structs:"updated_at" json:"updatedAt"`
// SmartPlaylist attributes
//Rules *SmartPlaylist `structs:"rules" json:"rules"`
//EvaluatedAt time.Time `structs:"evaluated_at" json:"evaluatedAt"`
Rules *SmartPlaylist `structs:"-" json:"rules"`
EvaluatedAt time.Time `structs:"evaluated_at" json:"evaluatedAt"`
}
type Playlists []Playlist
@ -33,6 +33,7 @@ type PlaylistRepository interface {
Get(id string) (*Playlist, error)
GetAll(options ...QueryOptions) (Playlists, error)
FindByPath(path string) (*Playlist, error)
FindByID(id string) (*Playlist, error)
Delete(id string) error
Tracks(playlistId string) PlaylistTrackRepository
}