This commit is contained in:
Lunny Xiao 2017-01-03 16:27:11 +08:00 коммит произвёл GitHub
Родитель 980dd0bf51
Коммит 09dabe2ff2
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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").