mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-09 03:11:51 +01:00
a6450494c3
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 |
||
---|---|---|
.. | ||
admin.go | ||
admin_test.go | ||
applications.go | ||
auths.go | ||
config.go | ||
emails.go | ||
hooks.go | ||
main_test.go | ||
notice.go | ||
orgs.go | ||
packages.go | ||
repos.go | ||
runners.go | ||
users.go | ||
users_test.go |