mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Add multiple genres to Albums
This commit is contained in:
parent
39da741a80
commit
5e54925520
15 changed files with 102 additions and 79 deletions
|
@ -213,14 +213,6 @@ func (r *artistRepository) refresh(ids ...string) error {
|
|||
return err
|
||||
}
|
||||
|
||||
func (r *artistRepository) GetStarred(options ...model.QueryOptions) (model.Artists, error) {
|
||||
sq := r.selectArtist(options...).Where("starred = true")
|
||||
var dba []dbArtist
|
||||
err := r.queryAll(sq, &dba)
|
||||
starred := r.toModels(dba)
|
||||
return starred, err
|
||||
}
|
||||
|
||||
func (r *artistRepository) purgeEmpty() error {
|
||||
del := Delete(r.tableName).Where("id not in (select distinct(album_artist_id) from album)")
|
||||
c, err := r.executeSQL(del)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue