feat(api): books can be sorted by series title

This commit is contained in:
Gauthier Roebroeck 2025-02-19 15:46:33 +08:00
parent 4de763a7bf
commit 9bab9f620f

View file

@ -72,6 +72,7 @@ class BookDtoDao(
private val sorts =
mapOf(
"name" to b.NAME.collate(SqliteUdfDataSource.COLLATION_UNICODE_3),
"series" to sd.TITLE_SORT.noCase(),
"created" to b.CREATED_DATE,
"createdDate" to b.CREATED_DATE,
"lastModified" to b.LAST_MODIFIED_DATE,