aboutsummaryrefslogtreecommitdiffstats
path: root/modules/private/actions.go
Commit message (Collapse)AuthorAgeFilesLines
* Return `responseText` instead of string in some functions (#28836)yp053272024-01-191-6/+2
| | | | Follow https://github.com/go-gitea/gitea/pull/28796#issuecomment-1891727591
* Caller should check the ResponseExtra.HasError() first to see whether the ↵wxiaoguang2024-01-151-1/+1
| | | | | | request fails (#28796) `resp != nil` doesn't mean the request really succeeded. Add a comment for requestJSONResp to clarify the behavior.
* Fix nil pointer panic when exec some gitea cli command (#28791)yp053272024-01-151-0/+3
| | | | | | | | | panic: ![image](https://github.com/go-gitea/gitea/assets/18380374/7fcde2ad-1d42-4b60-b120-3b60a8926e8e) After: ![image](https://github.com/go-gitea/gitea/assets/18380374/49d9f0ca-e590-4a35-8ca2-1317d1b7c939)
* Fix regression: access log template, gitea manager cli command (#24838)wxiaoguang2023-05-221-1/+0
| | | | | | | Close #24836 ![image](https://github.com/go-gitea/gitea/assets/2114189/95b025d2-f25f-4246-a08a-fe44ecb787a9) ![image](https://github.com/go-gitea/gitea/assets/2114189/c3afe1fa-2a23-420d-a016-3b67dcd04cd5)
* add CLI command to register runner tokens (#23762)techknowlogick2023-04-171-0/+27
This is a CLI command to generate new tokens for the runners to register with Fix https://github.com/go-gitea/gitea/issues/23643 --------- Co-authored-by: delvh <dev.lh@web.de>