Remove tracks from Playlist's GetAll

This commit is contained in:
Deluan 2020-05-11 10:53:09 -04:00 committed by Deluan Quintão
parent ab690215ef
commit 5682d0e721
2 changed files with 1 additions and 15 deletions

View file

@ -14,7 +14,7 @@ type Playlist struct {
SongCount int `json:"songCount"`
Owner string `json:"owner"`
Public bool `json:"public"`
Tracks MediaFiles `json:"tracks"`
Tracks MediaFiles `json:"tracks,omitempty"`
CreatedAt time.Time `json:"createdAt"`
UpdatedAt time.Time `json:"updatedAt"`
}