use tags list for Navidrome genres to support counts

This commit is contained in:
jeffvli
2025-12-02 18:37:31 -08:00
parent 854a26e3f4
commit f84506ce01
11 changed files with 100 additions and 23 deletions
+3 -2
View File
@@ -140,11 +140,12 @@ export const contract = c.router({
500: resultWithHeaders(ndType._response.error),
},
},
getTags: {
getTagList: {
method: 'GET',
path: 'tag',
query: ndType._parameters.tagList,
responses: {
200: resultWithHeaders(ndType._response.tags),
200: resultWithHeaders(ndType._response.tagList),
500: resultWithHeaders(ndType._response.error),
},
},