mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 21:28:11 +09:00 
			
		
		
		
	Use db.ListOptionsAll instead of db.ListOptions{ListAll: true} (#29995)
This commit is contained in:
		| @@ -515,10 +515,8 @@ var cases = []*testIndexerCase{ | |||||||
| 	{ | 	{ | ||||||
| 		Name: "SortByCreatedDesc", | 		Name: "SortByCreatedDesc", | ||||||
| 		SearchOptions: &internal.SearchOptions{ | 		SearchOptions: &internal.SearchOptions{ | ||||||
| 			Paginator: &db.ListOptions{ | 			Paginator: &db.ListOptionsAll, | ||||||
| 				ListAll: true, | 			SortBy:    internal.SortByCreatedDesc, | ||||||
| 			}, |  | ||||||
| 			SortBy: internal.SortByCreatedDesc, |  | ||||||
| 		}, | 		}, | ||||||
| 		Expected: func(t *testing.T, data map[int64]*internal.IndexerData, result *internal.SearchResult) { | 		Expected: func(t *testing.T, data map[int64]*internal.IndexerData, result *internal.SearchResult) { | ||||||
| 			assert.Equal(t, len(data), len(result.Hits)) | 			assert.Equal(t, len(data), len(result.Hits)) | ||||||
| @@ -533,10 +531,8 @@ var cases = []*testIndexerCase{ | |||||||
| 	{ | 	{ | ||||||
| 		Name: "SortByUpdatedDesc", | 		Name: "SortByUpdatedDesc", | ||||||
| 		SearchOptions: &internal.SearchOptions{ | 		SearchOptions: &internal.SearchOptions{ | ||||||
| 			Paginator: &db.ListOptions{ | 			Paginator: &db.ListOptionsAll, | ||||||
| 				ListAll: true, | 			SortBy:    internal.SortByUpdatedDesc, | ||||||
| 			}, |  | ||||||
| 			SortBy: internal.SortByUpdatedDesc, |  | ||||||
| 		}, | 		}, | ||||||
| 		Expected: func(t *testing.T, data map[int64]*internal.IndexerData, result *internal.SearchResult) { | 		Expected: func(t *testing.T, data map[int64]*internal.IndexerData, result *internal.SearchResult) { | ||||||
| 			assert.Equal(t, len(data), len(result.Hits)) | 			assert.Equal(t, len(data), len(result.Hits)) | ||||||
| @@ -551,10 +547,8 @@ var cases = []*testIndexerCase{ | |||||||
| 	{ | 	{ | ||||||
| 		Name: "SortByCommentsDesc", | 		Name: "SortByCommentsDesc", | ||||||
| 		SearchOptions: &internal.SearchOptions{ | 		SearchOptions: &internal.SearchOptions{ | ||||||
| 			Paginator: &db.ListOptions{ | 			Paginator: &db.ListOptionsAll, | ||||||
| 				ListAll: true, | 			SortBy:    internal.SortByCommentsDesc, | ||||||
| 			}, |  | ||||||
| 			SortBy: internal.SortByCommentsDesc, |  | ||||||
| 		}, | 		}, | ||||||
| 		Expected: func(t *testing.T, data map[int64]*internal.IndexerData, result *internal.SearchResult) { | 		Expected: func(t *testing.T, data map[int64]*internal.IndexerData, result *internal.SearchResult) { | ||||||
| 			assert.Equal(t, len(data), len(result.Hits)) | 			assert.Equal(t, len(data), len(result.Hits)) | ||||||
| @@ -569,10 +563,8 @@ var cases = []*testIndexerCase{ | |||||||
| 	{ | 	{ | ||||||
| 		Name: "SortByDeadlineDesc", | 		Name: "SortByDeadlineDesc", | ||||||
| 		SearchOptions: &internal.SearchOptions{ | 		SearchOptions: &internal.SearchOptions{ | ||||||
| 			Paginator: &db.ListOptions{ | 			Paginator: &db.ListOptionsAll, | ||||||
| 				ListAll: true, | 			SortBy:    internal.SortByDeadlineDesc, | ||||||
| 			}, |  | ||||||
| 			SortBy: internal.SortByDeadlineDesc, |  | ||||||
| 		}, | 		}, | ||||||
| 		Expected: func(t *testing.T, data map[int64]*internal.IndexerData, result *internal.SearchResult) { | 		Expected: func(t *testing.T, data map[int64]*internal.IndexerData, result *internal.SearchResult) { | ||||||
| 			assert.Equal(t, len(data), len(result.Hits)) | 			assert.Equal(t, len(data), len(result.Hits)) | ||||||
| @@ -587,10 +579,8 @@ var cases = []*testIndexerCase{ | |||||||
| 	{ | 	{ | ||||||
| 		Name: "SortByCreatedAsc", | 		Name: "SortByCreatedAsc", | ||||||
| 		SearchOptions: &internal.SearchOptions{ | 		SearchOptions: &internal.SearchOptions{ | ||||||
| 			Paginator: &db.ListOptions{ | 			Paginator: &db.ListOptionsAll, | ||||||
| 				ListAll: true, | 			SortBy:    internal.SortByCreatedAsc, | ||||||
| 			}, |  | ||||||
| 			SortBy: internal.SortByCreatedAsc, |  | ||||||
| 		}, | 		}, | ||||||
| 		Expected: func(t *testing.T, data map[int64]*internal.IndexerData, result *internal.SearchResult) { | 		Expected: func(t *testing.T, data map[int64]*internal.IndexerData, result *internal.SearchResult) { | ||||||
| 			assert.Equal(t, len(data), len(result.Hits)) | 			assert.Equal(t, len(data), len(result.Hits)) | ||||||
| @@ -605,10 +595,8 @@ var cases = []*testIndexerCase{ | |||||||
| 	{ | 	{ | ||||||
| 		Name: "SortByUpdatedAsc", | 		Name: "SortByUpdatedAsc", | ||||||
| 		SearchOptions: &internal.SearchOptions{ | 		SearchOptions: &internal.SearchOptions{ | ||||||
| 			Paginator: &db.ListOptions{ | 			Paginator: &db.ListOptionsAll, | ||||||
| 				ListAll: true, | 			SortBy:    internal.SortByUpdatedAsc, | ||||||
| 			}, |  | ||||||
| 			SortBy: internal.SortByUpdatedAsc, |  | ||||||
| 		}, | 		}, | ||||||
| 		Expected: func(t *testing.T, data map[int64]*internal.IndexerData, result *internal.SearchResult) { | 		Expected: func(t *testing.T, data map[int64]*internal.IndexerData, result *internal.SearchResult) { | ||||||
| 			assert.Equal(t, len(data), len(result.Hits)) | 			assert.Equal(t, len(data), len(result.Hits)) | ||||||
| @@ -623,10 +611,8 @@ var cases = []*testIndexerCase{ | |||||||
| 	{ | 	{ | ||||||
| 		Name: "SortByCommentsAsc", | 		Name: "SortByCommentsAsc", | ||||||
| 		SearchOptions: &internal.SearchOptions{ | 		SearchOptions: &internal.SearchOptions{ | ||||||
| 			Paginator: &db.ListOptions{ | 			Paginator: &db.ListOptionsAll, | ||||||
| 				ListAll: true, | 			SortBy:    internal.SortByCommentsAsc, | ||||||
| 			}, |  | ||||||
| 			SortBy: internal.SortByCommentsAsc, |  | ||||||
| 		}, | 		}, | ||||||
| 		Expected: func(t *testing.T, data map[int64]*internal.IndexerData, result *internal.SearchResult) { | 		Expected: func(t *testing.T, data map[int64]*internal.IndexerData, result *internal.SearchResult) { | ||||||
| 			assert.Equal(t, len(data), len(result.Hits)) | 			assert.Equal(t, len(data), len(result.Hits)) | ||||||
| @@ -641,10 +627,8 @@ var cases = []*testIndexerCase{ | |||||||
| 	{ | 	{ | ||||||
| 		Name: "SortByDeadlineAsc", | 		Name: "SortByDeadlineAsc", | ||||||
| 		SearchOptions: &internal.SearchOptions{ | 		SearchOptions: &internal.SearchOptions{ | ||||||
| 			Paginator: &db.ListOptions{ | 			Paginator: &db.ListOptionsAll, | ||||||
| 				ListAll: true, | 			SortBy:    internal.SortByDeadlineAsc, | ||||||
| 			}, |  | ||||||
| 			SortBy: internal.SortByDeadlineAsc, |  | ||||||
| 		}, | 		}, | ||||||
| 		Expected: func(t *testing.T, data map[int64]*internal.IndexerData, result *internal.SearchResult) { | 		Expected: func(t *testing.T, data map[int64]*internal.IndexerData, result *internal.SearchResult) { | ||||||
| 			assert.Equal(t, len(data), len(result.Hits)) | 			assert.Equal(t, len(data), len(result.Hits)) | ||||||
|   | |||||||
| @@ -61,9 +61,7 @@ func getIssueIndexerData(ctx context.Context, issueID int64) (*internal.IndexerD | |||||||
| 	) | 	) | ||||||
| 	{ | 	{ | ||||||
| 		reviews, err := issue_model.FindReviews(ctx, issue_model.FindReviewOptions{ | 		reviews, err := issue_model.FindReviews(ctx, issue_model.FindReviewOptions{ | ||||||
| 			ListOptions: db.ListOptions{ | 			ListOptions:  db.ListOptionsAll, | ||||||
| 				ListAll: true, |  | ||||||
| 			}, |  | ||||||
| 			IssueID:      issueID, | 			IssueID:      issueID, | ||||||
| 			OfficialOnly: false, | 			OfficialOnly: false, | ||||||
| 		}) | 		}) | ||||||
|   | |||||||
| @@ -275,9 +275,7 @@ func ViewUser(ctx *context.Context) { | |||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	repos, count, err := repo_model.SearchRepository(ctx, &repo_model.SearchRepoOptions{ | 	repos, count, err := repo_model.SearchRepository(ctx, &repo_model.SearchRepoOptions{ | ||||||
| 		ListOptions: db.ListOptions{ | 		ListOptions: db.ListOptionsAll, | ||||||
| 			ListAll: true, |  | ||||||
| 		}, |  | ||||||
| 		OwnerID:     u.ID, | 		OwnerID:     u.ID, | ||||||
| 		OrderBy:     db.SearchOrderByAlphabetically, | 		OrderBy:     db.SearchOrderByAlphabetically, | ||||||
| 		Private:     true, | 		Private:     true, | ||||||
| @@ -300,9 +298,7 @@ func ViewUser(ctx *context.Context) { | |||||||
| 	ctx.Data["EmailsTotal"] = len(emails) | 	ctx.Data["EmailsTotal"] = len(emails) | ||||||
|  |  | ||||||
| 	orgs, err := db.Find[org_model.Organization](ctx, org_model.FindOrgOptions{ | 	orgs, err := db.Find[org_model.Organization](ctx, org_model.FindOrgOptions{ | ||||||
| 		ListOptions: db.ListOptions{ | 		ListOptions:    db.ListOptionsAll, | ||||||
| 			ListAll: true, |  | ||||||
| 		}, |  | ||||||
| 		UserID:         u.ID, | 		UserID:         u.ID, | ||||||
| 		IncludePrivate: true, | 		IncludePrivate: true, | ||||||
| 	}) | 	}) | ||||||
|   | |||||||
| @@ -351,7 +351,7 @@ func Diff(ctx *context.Context) { | |||||||
| 	ctx.Data["Commit"] = commit | 	ctx.Data["Commit"] = commit | ||||||
| 	ctx.Data["Diff"] = diff | 	ctx.Data["Diff"] = diff | ||||||
|  |  | ||||||
| 	statuses, _, err := git_model.GetLatestCommitStatus(ctx, ctx.Repo.Repository.ID, commitID, db.ListOptions{ListAll: true}) | 	statuses, _, err := git_model.GetLatestCommitStatus(ctx, ctx.Repo.Repository.ID, commitID, db.ListOptionsAll) | ||||||
| 	if err != nil { | 	if err != nil { | ||||||
| 		log.Error("GetLatestCommitStatus: %v", err) | 		log.Error("GetLatestCommitStatus: %v", err) | ||||||
| 	} | 	} | ||||||
|   | |||||||
| @@ -697,10 +697,8 @@ func getBranchesAndTagsForRepo(ctx gocontext.Context, repo *repo_model.Repositor | |||||||
| 	defer gitRepo.Close() | 	defer gitRepo.Close() | ||||||
|  |  | ||||||
| 	branches, err = git_model.FindBranchNames(ctx, git_model.FindBranchOptions{ | 	branches, err = git_model.FindBranchNames(ctx, git_model.FindBranchOptions{ | ||||||
| 		RepoID: repo.ID, | 		RepoID:          repo.ID, | ||||||
| 		ListOptions: db.ListOptions{ | 		ListOptions:     db.ListOptionsAll, | ||||||
| 			ListAll: true, |  | ||||||
| 		}, |  | ||||||
| 		IsDeletedBranch: optional.Some(false), | 		IsDeletedBranch: optional.Some(false), | ||||||
| 	}) | 	}) | ||||||
| 	if err != nil { | 	if err != nil { | ||||||
| @@ -754,10 +752,8 @@ func CompareDiff(ctx *context.Context) { | |||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	headBranches, err := git_model.FindBranchNames(ctx, git_model.FindBranchOptions{ | 	headBranches, err := git_model.FindBranchNames(ctx, git_model.FindBranchOptions{ | ||||||
| 		RepoID: ci.HeadRepo.ID, | 		RepoID:          ci.HeadRepo.ID, | ||||||
| 		ListOptions: db.ListOptions{ | 		ListOptions:     db.ListOptionsAll, | ||||||
| 			ListAll: true, |  | ||||||
| 		}, |  | ||||||
| 		IsDeletedBranch: optional.Some(false), | 		IsDeletedBranch: optional.Some(false), | ||||||
| 	}) | 	}) | ||||||
| 	if err != nil { | 	if err != nil { | ||||||
|   | |||||||
| @@ -101,10 +101,8 @@ func getForkRepository(ctx *context.Context) *repo_model.Repository { | |||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	branches, err := git_model.FindBranchNames(ctx, git_model.FindBranchOptions{ | 	branches, err := git_model.FindBranchNames(ctx, git_model.FindBranchOptions{ | ||||||
| 		RepoID: ctx.Repo.Repository.ID, | 		RepoID:          ctx.Repo.Repository.ID, | ||||||
| 		ListOptions: db.ListOptions{ | 		ListOptions:     db.ListOptionsAll, | ||||||
| 			ListAll: true, |  | ||||||
| 		}, |  | ||||||
| 		IsDeletedBranch: optional.Some(false), | 		IsDeletedBranch: optional.Some(false), | ||||||
| 		// Add it as the first option | 		// Add it as the first option | ||||||
| 		ExcludeBranchNames: []string{ctx.Repo.Repository.DefaultBranch}, | 		ExcludeBranchNames: []string{ctx.Repo.Repository.DefaultBranch}, | ||||||
|   | |||||||
| @@ -278,7 +278,7 @@ func PrepareMergedViewPullInfo(ctx *context.Context, issue *issues_model.Issue) | |||||||
|  |  | ||||||
| 	if len(compareInfo.Commits) != 0 { | 	if len(compareInfo.Commits) != 0 { | ||||||
| 		sha := compareInfo.Commits[0].ID.String() | 		sha := compareInfo.Commits[0].ID.String() | ||||||
| 		commitStatuses, _, err := git_model.GetLatestCommitStatus(ctx, ctx.Repo.Repository.ID, sha, db.ListOptions{ListAll: true}) | 		commitStatuses, _, err := git_model.GetLatestCommitStatus(ctx, ctx.Repo.Repository.ID, sha, db.ListOptionsAll) | ||||||
| 		if err != nil { | 		if err != nil { | ||||||
| 			ctx.ServerError("GetLatestCommitStatus", err) | 			ctx.ServerError("GetLatestCommitStatus", err) | ||||||
| 			return nil | 			return nil | ||||||
| @@ -340,7 +340,7 @@ func PrepareViewPullInfo(ctx *context.Context, issue *issues_model.Issue) *git.C | |||||||
| 			ctx.ServerError(fmt.Sprintf("GetRefCommitID(%s)", pull.GetGitRefName()), err) | 			ctx.ServerError(fmt.Sprintf("GetRefCommitID(%s)", pull.GetGitRefName()), err) | ||||||
| 			return nil | 			return nil | ||||||
| 		} | 		} | ||||||
| 		commitStatuses, _, err := git_model.GetLatestCommitStatus(ctx, repo.ID, sha, db.ListOptions{ListAll: true}) | 		commitStatuses, _, err := git_model.GetLatestCommitStatus(ctx, repo.ID, sha, db.ListOptionsAll) | ||||||
| 		if err != nil { | 		if err != nil { | ||||||
| 			ctx.ServerError("GetLatestCommitStatus", err) | 			ctx.ServerError("GetLatestCommitStatus", err) | ||||||
| 			return nil | 			return nil | ||||||
| @@ -432,7 +432,7 @@ func PrepareViewPullInfo(ctx *context.Context, issue *issues_model.Issue) *git.C | |||||||
| 		return nil | 		return nil | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	commitStatuses, _, err := git_model.GetLatestCommitStatus(ctx, repo.ID, sha, db.ListOptions{ListAll: true}) | 	commitStatuses, _, err := git_model.GetLatestCommitStatus(ctx, repo.ID, sha, db.ListOptionsAll) | ||||||
| 	if err != nil { | 	if err != nil { | ||||||
| 		ctx.ServerError("GetLatestCommitStatus", err) | 		ctx.ServerError("GetLatestCommitStatus", err) | ||||||
| 		return nil | 		return nil | ||||||
|   | |||||||
| @@ -136,7 +136,7 @@ func getReleaseInfos(ctx *context.Context, opts *repo_model.FindReleasesOptions) | |||||||
| 		} | 		} | ||||||
|  |  | ||||||
| 		if canReadActions { | 		if canReadActions { | ||||||
| 			statuses, _, err := git_model.GetLatestCommitStatus(ctx, r.Repo.ID, r.Sha1, db.ListOptions{ListAll: true}) | 			statuses, _, err := git_model.GetLatestCommitStatus(ctx, r.Repo.ID, r.Sha1, db.ListOptionsAll) | ||||||
| 			if err != nil { | 			if err != nil { | ||||||
| 				return nil, err | 				return nil, err | ||||||
| 			} | 			} | ||||||
|   | |||||||
| @@ -688,9 +688,7 @@ func GetBranchesList(ctx *context.Context) { | |||||||
| 	branchOpts := git_model.FindBranchOptions{ | 	branchOpts := git_model.FindBranchOptions{ | ||||||
| 		RepoID:          ctx.Repo.Repository.ID, | 		RepoID:          ctx.Repo.Repository.ID, | ||||||
| 		IsDeletedBranch: optional.Some(false), | 		IsDeletedBranch: optional.Some(false), | ||||||
| 		ListOptions: db.ListOptions{ | 		ListOptions:     db.ListOptionsAll, | ||||||
| 			ListAll: true, |  | ||||||
| 		}, |  | ||||||
| 	} | 	} | ||||||
| 	branches, err := git_model.FindBranchNames(ctx, branchOpts) | 	branches, err := git_model.FindBranchNames(ctx, branchOpts) | ||||||
| 	if err != nil { | 	if err != nil { | ||||||
| @@ -723,9 +721,7 @@ func PrepareBranchList(ctx *context.Context) { | |||||||
| 	branchOpts := git_model.FindBranchOptions{ | 	branchOpts := git_model.FindBranchOptions{ | ||||||
| 		RepoID:          ctx.Repo.Repository.ID, | 		RepoID:          ctx.Repo.Repository.ID, | ||||||
| 		IsDeletedBranch: optional.Some(false), | 		IsDeletedBranch: optional.Some(false), | ||||||
| 		ListOptions: db.ListOptions{ | 		ListOptions:     db.ListOptionsAll, | ||||||
| 			ListAll: true, |  | ||||||
| 		}, |  | ||||||
| 	} | 	} | ||||||
| 	brs, err := git_model.FindBranchNames(ctx, branchOpts) | 	brs, err := git_model.FindBranchNames(ctx, branchOpts) | ||||||
| 	if err != nil { | 	if err != nil { | ||||||
|   | |||||||
| @@ -359,7 +359,7 @@ func loadLatestCommitData(ctx *context.Context, latestCommit *git.Commit) bool { | |||||||
| 		ctx.Data["LatestCommitVerification"] = verification | 		ctx.Data["LatestCommitVerification"] = verification | ||||||
| 		ctx.Data["LatestCommitUser"] = user_model.ValidateCommitWithEmail(ctx, latestCommit) | 		ctx.Data["LatestCommitUser"] = user_model.ValidateCommitWithEmail(ctx, latestCommit) | ||||||
|  |  | ||||||
| 		statuses, _, err := git_model.GetLatestCommitStatus(ctx, ctx.Repo.Repository.ID, latestCommit.ID.String(), db.ListOptions{ListAll: true}) | 		statuses, _, err := git_model.GetLatestCommitStatus(ctx, ctx.Repo.Repository.ID, latestCommit.ID.String(), db.ListOptionsAll) | ||||||
| 		if err != nil { | 		if err != nil { | ||||||
| 			log.Error("GetLatestCommitStatus: %v", err) | 			log.Error("GetLatestCommitStatus: %v", err) | ||||||
| 		} | 		} | ||||||
|   | |||||||
| @@ -79,7 +79,7 @@ func createCommitStatus(ctx context.Context, job *actions_model.ActionRunJob) er | |||||||
| 	} | 	} | ||||||
| 	ctxname := fmt.Sprintf("%s / %s (%s)", runName, job.Name, event) | 	ctxname := fmt.Sprintf("%s / %s (%s)", runName, job.Name, event) | ||||||
| 	state := toCommitStatus(job.Status) | 	state := toCommitStatus(job.Status) | ||||||
| 	if statuses, _, err := git_model.GetLatestCommitStatus(ctx, repo.ID, sha, db.ListOptions{ListAll: true}); err == nil { | 	if statuses, _, err := git_model.GetLatestCommitStatus(ctx, repo.ID, sha, db.ListOptionsAll); err == nil { | ||||||
| 		for _, v := range statuses { | 		for _, v := range statuses { | ||||||
| 			if v.Context == ctxname { | 			if v.Context == ctxname { | ||||||
| 				if v.State == state { | 				if v.State == state { | ||||||
|   | |||||||
| @@ -152,7 +152,7 @@ func GetPullRequestCommitStatusState(ctx context.Context, pr *issues_model.PullR | |||||||
| 		return "", errors.Wrap(err, "LoadBaseRepo") | 		return "", errors.Wrap(err, "LoadBaseRepo") | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	commitStatuses, _, err := git_model.GetLatestCommitStatus(ctx, pr.BaseRepo.ID, sha, db.ListOptions{ListAll: true}) | 	commitStatuses, _, err := git_model.GetLatestCommitStatus(ctx, pr.BaseRepo.ID, sha, db.ListOptionsAll) | ||||||
| 	if err != nil { | 	if err != nil { | ||||||
| 		return "", errors.Wrap(err, "GetLatestCommitStatus") | 		return "", errors.Wrap(err, "GetLatestCommitStatus") | ||||||
| 	} | 	} | ||||||
|   | |||||||
| @@ -883,7 +883,7 @@ func getAllCommitStatus(ctx context.Context, gitRepo *git.Repository, pr *issues | |||||||
| 		return nil, nil, shaErr | 		return nil, nil, shaErr | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	statuses, _, err = git_model.GetLatestCommitStatus(ctx, pr.BaseRepo.ID, sha, db.ListOptions{ListAll: true}) | 	statuses, _, err = git_model.GetLatestCommitStatus(ctx, pr.BaseRepo.ID, sha, db.ListOptionsAll) | ||||||
| 	lastStatus = git_model.CalcCommitStatus(statuses) | 	lastStatus = git_model.CalcCommitStatus(statuses) | ||||||
| 	return statuses, lastStatus, err | 	return statuses, lastStatus, err | ||||||
| } | } | ||||||
|   | |||||||
| @@ -52,9 +52,7 @@ func InvalidateCodeComments(ctx context.Context, prs issues_model.PullRequestLis | |||||||
| 	issueIDs := prs.GetIssueIDs() | 	issueIDs := prs.GetIssueIDs() | ||||||
|  |  | ||||||
| 	codeComments, err := db.Find[issues_model.Comment](ctx, issues_model.FindCommentsOptions{ | 	codeComments, err := db.Find[issues_model.Comment](ctx, issues_model.FindCommentsOptions{ | ||||||
| 		ListOptions: db.ListOptions{ | 		ListOptions: db.ListOptionsAll, | ||||||
| 			ListAll: true, |  | ||||||
| 		}, |  | ||||||
| 		Type:        issues_model.CommentTypeCode, | 		Type:        issues_model.CommentTypeCode, | ||||||
| 		Invalidated: optional.Some(false), | 		Invalidated: optional.Some(false), | ||||||
| 		IssueIDs:    issueIDs, | 		IssueIDs:    issueIDs, | ||||||
| @@ -322,12 +320,10 @@ func SubmitReview(ctx context.Context, doer *user_model.User, gitRepo *git.Repos | |||||||
| // DismissApprovalReviews dismiss all approval reviews because of new commits | // DismissApprovalReviews dismiss all approval reviews because of new commits | ||||||
| func DismissApprovalReviews(ctx context.Context, doer *user_model.User, pull *issues_model.PullRequest) error { | func DismissApprovalReviews(ctx context.Context, doer *user_model.User, pull *issues_model.PullRequest) error { | ||||||
| 	reviews, err := issues_model.FindReviews(ctx, issues_model.FindReviewOptions{ | 	reviews, err := issues_model.FindReviews(ctx, issues_model.FindReviewOptions{ | ||||||
| 		ListOptions: db.ListOptions{ | 		ListOptions: db.ListOptionsAll, | ||||||
| 			ListAll: true, | 		IssueID:     pull.IssueID, | ||||||
| 		}, | 		Type:        issues_model.ReviewTypeApprove, | ||||||
| 		IssueID:   pull.IssueID, | 		Dismissed:   optional.Some(false), | ||||||
| 		Type:      issues_model.ReviewTypeApprove, |  | ||||||
| 		Dismissed: optional.Some(false), |  | ||||||
| 	}) | 	}) | ||||||
| 	if err != nil { | 	if err != nil { | ||||||
| 		return err | 		return err | ||||||
|   | |||||||
| @@ -144,10 +144,8 @@ func adoptRepository(ctx context.Context, repoPath string, u *user_model.User, r | |||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	branches, _ := git_model.FindBranchNames(ctx, git_model.FindBranchOptions{ | 	branches, _ := git_model.FindBranchNames(ctx, git_model.FindBranchOptions{ | ||||||
| 		RepoID: repo.ID, | 		RepoID:          repo.ID, | ||||||
| 		ListOptions: db.ListOptions{ | 		ListOptions:     db.ListOptionsAll, | ||||||
| 			ListAll: true, |  | ||||||
| 		}, |  | ||||||
| 		IsDeletedBranch: optional.Some(false), | 		IsDeletedBranch: optional.Some(false), | ||||||
| 	}) | 	}) | ||||||
|  |  | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user