1
0
mirror of https://github.com/go-gitea/gitea.git synced 2024-11-04 08:17:24 -05:00
gitea/routers/web/user/setting
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
..
security
account_test.go
account.go
adopt.go Fix unclear IsRepositoryExist logic (#24374) 2023-04-28 14:14:26 -04:00
applications.go
keys.go
main_test.go
oauth2_common.go
oauth2.go
packages.go
profile.go Fix unclear "Owner" concept (#24233) 2023-04-20 19:33:30 +02:00
secrets.go Move secrets and runners settings to actions settings (#24200) 2023-04-27 20:08:47 -04:00
webhooks.go