Ignore case when sorting by username

Fixes #748
This commit is contained in:
Nassim Jahnke 2022-07-14 09:28:28 +02:00
parent 95c88e673d
commit e4ec1ad172
No known key found for this signature in database
GPG Key ID: 6BE3B555EBC5982B

View File

@ -8,7 +8,7 @@ import java.util.Map;
public enum SorterRegistry implements Sorter {
USER_JOIN_DATE("joinDate", simpleSorter("u.join_date")),
USER_NAME("username", simpleSorter("username")),
USER_NAME("username", simpleSorter("lower(username)")),
USER_PROJECT_COUNT("projectCount", simpleSorter("project_count")),
// For Projects