aboutsummaryrefslogtreecommitdiffstats
path: root/models/repo/search.go
Commit message (Collapse)AuthorAgeFilesLines
* Fix `recentupdate` sorting bugs (#32505)Zettat1232024-11-151-0/+1
| | | | | | Fix #32499 - Add the missing `recentupdate` to `OrderByFlatMap` - Assign default value(`recentupdate`) to `EXPLORE_PAGING_DEFAULT_SORT`
* Rename repo_model.SearchOrderByMap to repo_model.OrderByMap (#31359)65432024-06-151-19/+19
| | | https://github.com/go-gitea/gitea/pull/30876#discussion_r1637112394
* rm const do inline (#31360)65432024-06-151-42/+18
| | | https://github.com/go-gitea/gitea/pull/30876/files#r1637288202
* [Refactor] Unify repo search order by logic (#30876)65432024-06-131-10/+62
| | | | have repo OrderBy definitions defined in one place and use a single type for OrderBy database options
* Get repo list with OrderBy alpha should respect owner too (#30784)65432024-05-061-2/+2
| | | | | | | | | | | | | instead of: - zowner/gcode - awesome/nul - zowner/nul - zowner/zzz we will get: - awesome/nul - zowner/gcode - zowner/nul - zowner/zzz
* Split "modules/context.go" to separate files (#24569)wxiaoguang2023-05-081-0/+24
The "modules/context.go" is too large to maintain. This PR splits it to separate files, eg: context_request.go, context_response.go, context_serve.go This PR will help: 1. The future refactoring for Gitea's web context (eg: simplify the context) 2. Introduce proper "range request" support 3. Introduce context function This PR only moves code, doesn't change any logic.