mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
Add multiple genres to Artists
This commit is contained in:
parent
1d8607ef6a
commit
b56e034ce3
6 changed files with 76 additions and 22 deletions
|
@ -67,3 +67,9 @@ func booleanFilter(field string, value interface{}) Sqlizer {
|
|||
func fullTextFilter(field string, value interface{}) Sqlizer {
|
||||
return fullTextExpr(value.(string))
|
||||
}
|
||||
|
||||
func idFilter(tableName string) func(string, interface{}) Sqlizer {
|
||||
return func(field string, value interface{}) Sqlizer {
|
||||
return Eq{tableName + ".id": value}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue