mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Add has_rating
filter to albums
This commit is contained in:
parent
10dcc3fb37
commit
5178f44094
1 changed files with 5 additions and 0 deletions
|
@ -44,6 +44,7 @@ func NewAlbumRepository(ctx context.Context, o orm.Ormer) model.AlbumRepository
|
|||
"year": yearFilter,
|
||||
"recently_played": recentlyPlayedFilter,
|
||||
"starred": booleanFilter,
|
||||
"has_rating": hasRatingFilter,
|
||||
}
|
||||
|
||||
return r
|
||||
|
@ -60,6 +61,10 @@ func recentlyPlayedFilter(field string, value interface{}) Sqlizer {
|
|||
return Gt{"play_count": 0}
|
||||
}
|
||||
|
||||
func hasRatingFilter(field string, value interface{}) Sqlizer {
|
||||
return Gt{"rating": 0}
|
||||
}
|
||||
|
||||
func yearFilter(field string, value interface{}) Sqlizer {
|
||||
return Or{
|
||||
And{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue