Skip to content

Commit 5cea270

Browse files
Implement SCIM (#2062)
Fixes: #2030.
1 parent 178eada commit 5cea270

File tree

6 files changed

+541
-1
lines changed

6 files changed

+541
-1
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ coverage.out
44
# intellij files
55
.idea/
66
vendor/
7-
.DS_Store
7+
.DS_Store
8+
.vscode

github/github-accessors.go

Lines changed: 80 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: 100 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
@@ -181,6 +181,7 @@ type Client struct {
181181
PullRequests *PullRequestsService
182182
Reactions *ReactionsService
183183
Repositories *RepositoriesService
184+
SCIM *SCIMService
184185
Search *SearchService
185186
Teams *TeamsService
186187
Users *UsersService
@@ -308,6 +309,7 @@ func NewClient(httpClient *http.Client) *Client {
308309
c.PullRequests = (*PullRequestsService)(&c.common)
309310
c.Reactions = (*ReactionsService)(&c.common)
310311
c.Repositories = (*RepositoriesService)(&c.common)
312+
c.SCIM = (*SCIMService)(&c.common)
311313
c.Search = (*SearchService)(&c.common)
312314
c.Teams = (*TeamsService)(&c.common)
313315
c.Users = (*UsersService)(&c.common)

0 commit comments

Comments
 (0)