mirror of
https://github.com/go-gitea/gitea.git
synced 2026-04-04 05:45:23 +02:00
fix bug where builder.In cond for groups and teams was not placed into the builder.Or cond
This commit is contained in:
parent
6bb7598555
commit
365769e2f7
@ -35,8 +35,9 @@ func GetTeamRepositories(ctx context.Context, opts *SearchTeamRepoOptions) (Repo
|
||||
builder.In("id", builder.Select("repo_id").
|
||||
From("team_repo").
|
||||
Where(builder.Eq{"team_id": opts.TeamID}),
|
||||
)),
|
||||
builder.In("id", ReposAccessibleByGroupTeamBuilder(opts.TeamID)),
|
||||
),
|
||||
builder.In("id", ReposAccessibleByGroupTeamBuilder(opts.TeamID)),
|
||||
),
|
||||
)
|
||||
}
|
||||
if opts.PageSize > 0 {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user