mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-05-04 13:50:39 +00:00
add repo list of dashboard
This commit is contained in:
parent
fdc4151ff3
commit
b5cc4078a9
4 changed files with 24 additions and 5 deletions
|
@ -142,13 +142,15 @@ func UpdateUser(user *User) (err error) {
|
|||
|
||||
// DeleteUser completely deletes everything of the user.
|
||||
func DeleteUser(user *User) error {
|
||||
repos, err := GetRepositories(user)
|
||||
cnt, err := GetRepositoryCount(user)
|
||||
if err != nil {
|
||||
return errors.New("modesl.GetRepositories: " + err.Error())
|
||||
} else if len(repos) > 0 {
|
||||
} else if cnt > 0 {
|
||||
return ErrUserOwnRepos
|
||||
}
|
||||
|
||||
// TODO: check issues, other repos' commits
|
||||
|
||||
_, err = orm.Delete(user)
|
||||
// TODO: delete and update follower information.
|
||||
return err
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue