Add public vs private info for repo list (#7937)

This commit is contained in:
Rohit Malhotra
2025-04-18 17:07:08 -04:00
committed by GitHub
parent 06fcf54475
commit c18475ddc2
3 changed files with 3 additions and 0 deletions

View File

@@ -225,6 +225,7 @@ class GitLabService(GitService):
full_name=repo.get('path_with_namespace'),
stargazers_count=repo.get('star_count'),
git_provider=ProviderType.GITLAB,
is_public = repo.get('visibility') == 'public'
)
for repo in all_repos
]