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
|
@ -82,7 +82,12 @@ func artistFilter(field string, value interface{}) Sqlizer {
|
|||
}
|
||||
|
||||
func (r *albumRepository) CountAll(options ...model.QueryOptions) (int64, error) {
|
||||
return r.count(r.selectAlbum(), options...)
|
||||
sql := r.selectAlbum()
|
||||
sql = sql.LeftJoin("album_genres ag on album.id = ag.album_id").
|
||||
LeftJoin("genre on ag.genre_id = genre.id").
|
||||
GroupBy("album.id")
|
||||
|
||||
return r.count(sql, options...)
|
||||
}
|
||||
|
||||
func (r *albumRepository) Exists(id string) (bool, error) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue