Skip to content

Commit 71f2518

Browse files
committed
make gen
1 parent 45d80cc commit 71f2518

File tree

7 files changed

+260
-3
lines changed

7 files changed

+260
-3
lines changed

coderd/apidoc/docs.go

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

coderd/apidoc/swagger.json

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

codersdk/idpsync.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ import (
1212
"golang.org/x/xerrors"
1313
)
1414

15-
type IDPSyncMapping[ResourceIdType uuid.UUID | string] struct {
15+
// constraining to `uuid.UUID | string` here would be nice but `make gen` will
16+
// yell at you for it.
17+
type IDPSyncMapping[ResourceIdType any] struct {
1618
// The IdP claim the user has
1719
Given string
1820
// The ID of the Coder resource the user should be added to

docs/reference/api/enterprise.md

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

docs/reference/api/schemas.md

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

enterprise/coderd/idpsync.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -318,8 +318,8 @@ func (api *API) patchOrganizationIDPSyncSettings(rw http.ResponseWriter, r *http
318318
})
319319
}
320320

321-
// @Summary Update organization IdP Sync settings
322-
// @ID update-organization-idp-sync-settings
321+
// @Summary Update organization IdP Sync mapping
322+
// @ID update-organization-idp-sync-mapping
323323
// @Security CoderSessionToken
324324
// @Produce json
325325
// @Accept json

site/src/api/typesGenerated.ts

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

0 commit comments

Comments
 (0)