forgejo/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.go
account_test.go Implement FSFE REUSE for golang files (#21840) 2022-11-27 18:20:29 +00:00
adopt.go Fix unclear IsRepositoryExist logic (#24374) 2023-04-28 14:14:26 -04:00
applications.go
keys.go
main_test.go
oauth2.go
oauth2_common.go
packages.go
profile.go
secrets.go Move secrets and runners settings to actions settings (#24200) 2023-04-27 20:08:47 -04:00
webhooks.go