Skip to content

Commit 596c795

Browse files
authored
Clean up deprecated field in GetLinkedGitHubRepos (#10458)
Cleanup now that #10457 is out
1 parent 23a368b commit 596c795

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

enterprise/server/githubapp/githubapp.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -271,9 +271,6 @@ func (s *GitHubAppService) GetLinkedGitHubRepos(ctx context.Context) (*ghpb.GetL
271271
`, u.GetGroupID())
272272
res := &ghpb.GetLinkedReposResponse{}
273273
err = db.ScanEach(rq, func(ctx context.Context, row *tables.GitRepository) error {
274-
// TODO(Maggie): Clean up after BE change is deployed
275-
res.RepoUrls = append(res.RepoUrls, row.RepoURL)
276-
277274
res.Repos = append(res.Repos, &ghpb.GitRepository{
278275
RepoUrl: row.RepoURL,
279276
UseDefaultWorkflowConfig: row.UseDefaultWorkflowConfig,

0 commit comments

Comments
 (0)