aboutsummaryrefslogtreecommitdiffstats
path: root/modules/reqctx
Commit message (Collapse)AuthorAgeFilesLines
* Add material icons for file list (#33837)wxiaoguang2025-03-101-1/+4
|
* [Feature] Private README.md for organization (#32872)Chai-Shi2024-12-311-5/+21
| | | | | | | | Implemented #29503 --------- Co-authored-by: Ben Chang <ben_chang@htc.com> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
* Refactor request context (#32956)wxiaoguang2024-12-241-0/+123
Introduce RequestContext: is a short-lived context that is used to store request-specific data. RequestContext could be used to clean form tmp files, close context git repo, and do some tracing in the future. Then a lot of legacy code could be removed or improved. For example: most `ctx.Repo.GitRepo.Close()` could be removed because the git repo could be closed when the request is done.