Forgejo/routers/api
wxiaoguang a6450494c3
Fix unclear IsRepositoryExist logic (#24374)
There was only one `IsRepositoryExist` function, it did: `has && isDir`

However it's not right, and it would cause 500 error when creating a new
repository if the dir exists.

Then, it was changed to `has || isDir`, it is still incorrect, it
affects the "adopt repo" logic.

To make the logic clear:

* IsRepositoryModelOrDirExist
* IsRepositoryModelExist
2023-04-28 14:14:26 -04:00
..
actions Gitea Actions add base_ref, head_ref, api_url, ref_type fields (#24356) 2023-04-28 07:35:21 +08:00
packages Require repo scope for PATs for private repos and basic authentication (#24362) 2023-04-26 19:24:03 -05:00
v1 Fix unclear IsRepositoryExist logic (#24374) 2023-04-28 14:14:26 -04:00