add repo list of dashboard

This commit is contained in:
Lunny Xiao 2014-03-11 14:17:05 +08:00
parent fdc4151ff3
commit b5cc4078a9
4 changed files with 24 additions and 5 deletions

View file

@ -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