mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
Add more options to Players list
This commit is contained in:
parent
84ed3eb427
commit
c9bcb333ae
3 changed files with 23 additions and 2 deletions
|
@ -52,6 +52,10 @@ func startsWithFilter(field string, value interface{}) Sqlizer {
|
|||
return Like{field: fmt.Sprintf("%s%%", value)}
|
||||
}
|
||||
|
||||
func containsFilter(field string, value interface{}) Sqlizer {
|
||||
return Like{field: fmt.Sprintf("%%%s%%", value)}
|
||||
}
|
||||
|
||||
func booleanFilter(field string, value interface{}) Sqlizer {
|
||||
v := strings.ToLower(value.(string))
|
||||
return Eq{field: strings.ToLower(v) == "true"}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue