mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Add Genre filters to UI
This commit is contained in:
parent
c56c7c865e
commit
20b7e5c49b
13 changed files with 108 additions and 32 deletions
|
@ -49,7 +49,11 @@ func (r *artistRepository) selectArtist(options ...model.QueryOptions) SelectBui
|
|||
}
|
||||
|
||||
func (r *artistRepository) CountAll(options ...model.QueryOptions) (int64, error) {
|
||||
return r.count(r.newSelectWithAnnotation("artist.id"), options...)
|
||||
sql := r.newSelectWithAnnotation("artist.id")
|
||||
sql = sql.LeftJoin("artist_genres ag on artist.id = ag.artist_id").
|
||||
LeftJoin("genre on ag.genre_id = genre.id").
|
||||
GroupBy("artist.id")
|
||||
return r.count(sql, options...)
|
||||
}
|
||||
|
||||
func (r *artistRepository) Exists(id string) (bool, error) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue