mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
feat: add artist filter to album view
This commit is contained in:
parent
c84a58ff7d
commit
100db2bcfd
11 changed files with 129 additions and 59 deletions
|
@ -60,3 +60,10 @@ func toCamelCase(str string) string {
|
|||
return strings.ToUpper(strings.Replace(s, "_", "", -1))
|
||||
})
|
||||
}
|
||||
|
||||
type exist string
|
||||
|
||||
func (e exist) ToSql() (string, []interface{}, error) {
|
||||
sql := fmt.Sprintf("exists (select 1 %s)", e)
|
||||
return sql, nil, nil
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue