Add all individual artists from album in searchable full text field. Should fix #94

This commit is contained in:
Deluan 2020-04-08 23:54:54 -04:00
parent b8d1185f7f
commit 43ce81af67
3 changed files with 7 additions and 11 deletions

View file

@ -34,7 +34,6 @@ type Albums []Album
type AlbumRepository interface {
CountAll(...QueryOptions) (int64, error)
Exists(id string) (bool, error)
Put(m *Album) error
Get(id string) (*Album, error)
FindByArtist(albumArtistId string) (Albums, error)
GetAll(...QueryOptions) (Albums, error)