0
0
Fork 0
mirror of https://github.com/go-gitea/gitea synced 2024-05-19 20:04:01 +02:00

Repository explore alphabetically order respect owner name (#30882)

similar to #30784 but only for the repo explore page

is covered by #30876 for the main branch
This commit is contained in:
6543 2024-05-07 18:35:02 +02:00 committed by GitHub
parent 216c8eada3
commit d410e2acce
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -71,9 +71,9 @@ func RenderRepoSearch(ctx *context.Context, opts *RepoSearchOptions) {
case "leastupdate":
orderBy = db.SearchOrderByLeastUpdated
case "reversealphabetically":
orderBy = db.SearchOrderByAlphabeticallyReverse
orderBy = "owner_name DESC, name DESC"
case "alphabetically":
orderBy = db.SearchOrderByAlphabetically
orderBy = "owner_name ASC, name ASC"
case "reversesize":
orderBy = db.SearchOrderBySizeReverse
case "size":