Skip to content

Commit

Permalink
fix: tables
Browse files Browse the repository at this point in the history
  • Loading branch information
mohamadch91 committed Dec 19, 2024
1 parent eeab8ee commit baa72e0
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 24 deletions.
32 changes: 16 additions & 16 deletions provider/describer/repository.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,16 +105,16 @@ func GetRepositoryList(ctx context.Context, githubClient GitHubClient, organizat
StargazerCount: repo.StargazerCount,
UpdatedAt: repo.UpdatedAt,
URL: repo.Url,
UsesCustomOpenGraphImage: repo.UsesCustomOpenGraphImage,
CanAdminister: repo.CanAdminister,
CanCreateProjects: repo.CanCreateProjects,
CanSubscribe: repo.CanSubscribe,
CanUpdateTopics: repo.CanUpdateTopics,
HasStarred: repo.HasStarred,
// UsesCustomOpenGraphImage: repo.UsesCustomOpenGraphImage,
// CanAdminister: repo.CanAdminister,
// CanCreateProjects: repo.CanCreateProjects,
// CanSubscribe: repo.CanSubscribe,
// CanUpdateTopics: repo.CanUpdateTopics,
// HasStarred: repo.HasStarred,
PossibleCommitEmails: repo.PossibleCommitEmails,
Subscription: repo.Subscription,
// Subscription: repo.Subscription,
Visibility: repo.Visibility,
YourPermission: repo.YourPermission,
// YourPermission: repo.YourPermission,
WebCommitSignOffRequired: repo.WebCommitSignoffRequired,
RepositoryTopicsTotalCount: repo.RepositoryTopics.TotalCount,
OpenIssuesTotalCount: repo.OpenIssues.TotalCount,
Expand Down Expand Up @@ -233,16 +233,16 @@ func GetRepository(ctx context.Context, githubClient GitHubClient, organizationN
StargazerCount: repo.StargazerCount,
UpdatedAt: repo.UpdatedAt,
URL: repo.Url,
UsesCustomOpenGraphImage: repo.UsesCustomOpenGraphImage,
CanAdminister: repo.CanAdminister,
CanCreateProjects: repo.CanCreateProjects,
CanSubscribe: repo.CanSubscribe,
CanUpdateTopics: repo.CanUpdateTopics,
HasStarred: repo.HasStarred,
// UsesCustomOpenGraphImage: repo.UsesCustomOpenGraphImage,
// CanAdminister: repo.CanAdminister,
// CanCreateProjects: repo.CanCreateProjects,
// CanSubscribe: repo.CanSubscribe,
// CanUpdateTopics: repo.CanUpdateTopics,
// HasStarred: repo.HasStarred,
PossibleCommitEmails: repo.PossibleCommitEmails,
Subscription: repo.Subscription,
// Subscription: repo.Subscription,
Visibility: repo.Visibility,
YourPermission: repo.YourPermission,
// YourPermission: repo.YourPermission,
WebCommitSignOffRequired: repo.WebCommitSignoffRequired,
RepositoryTopicsTotalCount: repo.RepositoryTopics.TotalCount,
OpenIssuesTotalCount: repo.OpenIssues.TotalCount,
Expand Down
16 changes: 8 additions & 8 deletions provider/describer/team_repository.go
Original file line number Diff line number Diff line change
Expand Up @@ -127,16 +127,16 @@ func GetTeamRepositories(ctx context.Context, githubClient GitHubClient, organiz
StargazerCount: repo.Node.StargazerCount,
UpdatedAt: repo.Node.UpdatedAt,
URL: repo.Node.Url,
UsesCustomOpenGraphImage: repo.Node.UsesCustomOpenGraphImage,
CanAdminister: repo.Node.CanAdminister,
CanCreateProjects: repo.Node.CanCreateProjects,
CanSubscribe: repo.Node.CanSubscribe,
CanUpdateTopics: repo.Node.CanUpdateTopics,
HasStarred: repo.Node.HasStarred,
// UsesCustomOpenGraphImage: repo.Node.UsesCustomOpenGraphImage,
// CanAdminister: repo.Node.CanAdminister,
// CanCreateProjects: repo.Node.CanCreateProjects,
// CanSubscribe: repo.Node.CanSubscribe,
// CanUpdateTopics: repo.Node.CanUpdateTopics,
// HasStarred: repo.Node.HasStarred,
PossibleCommitEmails: repo.Node.PossibleCommitEmails,
Subscription: repo.Node.Subscription,
// Subscription: repo.Node.Subscription,
Visibility: repo.Node.Visibility,
YourPermission: repo.Node.YourPermission,
// YourPermission: repo.Node.YourPermission,
WebCommitSignOffRequired: repo.Node.WebCommitSignoffRequired,
RepositoryTopicsTotalCount: repo.Node.RepositoryTopics.TotalCount,
OpenIssuesTotalCount: repo.Node.OpenIssues.TotalCount,
Expand Down

0 comments on commit baa72e0

Please sign in to comment.