This commit is contained in:
Lunny Xiao 2017-01-03 16:27:11 +08:00 committed by GitHub
parent 980dd0bf51
commit 09dabe2ff2
1 changed files with 1 additions and 1 deletions

View File

@ -559,7 +559,7 @@ func (org *User) GetUserRepositories(userID int64, page, pageSize int) ([]*Repos
}
repos := make([]*Repository, 0, pageSize)
if err := x.
if err := x.Select("`repository`.*").
Join("INNER", "team_repo", "`team_repo`.repo_id=`repository`.id").
Where(cond).
GroupBy("`repository`.id").