Skip to content

Commit 12cbac6

Browse files
authored
feat: Add support for private registries endpoints (#3785)
1 parent 98a62fd commit 12cbac6

File tree

5 files changed

+851
-0
lines changed

5 files changed

+851
-0
lines changed

github/github-accessors.go

Lines changed: 112 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

github/github-accessors_test.go

Lines changed: 148 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

github/github.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,7 @@ type Client struct {
218218
Meta *MetaService
219219
Migrations *MigrationService
220220
Organizations *OrganizationsService
221+
PrivateRegistries *PrivateRegistriesService
221222
Projects *ProjectsService
222223
PullRequests *PullRequestsService
223224
RateLimit *RateLimitService
@@ -457,6 +458,7 @@ func (c *Client) initialize() {
457458
c.Meta = (*MetaService)(&c.common)
458459
c.Migrations = (*MigrationService)(&c.common)
459460
c.Organizations = (*OrganizationsService)(&c.common)
461+
c.PrivateRegistries = (*PrivateRegistriesService)(&c.common)
460462
c.Projects = (*ProjectsService)(&c.common)
461463
c.PullRequests = (*PullRequestsService)(&c.common)
462464
c.RateLimit = (*RateLimitService)(&c.common)

0 commit comments

Comments
 (0)