Skip to content

Commit b1ffebe

Browse files
committed
Make gen
1 parent 62ef8d9 commit b1ffebe

File tree

6 files changed

+13
-1
lines changed

6 files changed

+13
-1
lines changed

coderd/apidoc/docs.go

Lines changed: 3 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: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

codersdk/deployment.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ type OIDCConfig struct {
220220
Scopes clibase.Strings `json:"scopes" typescript:",notnull"`
221221
IgnoreEmailVerified clibase.Bool `json:"ignore_email_verified" typescript:",notnull"`
222222
UsernameField clibase.String `json:"username_field" typescript:",notnull"`
223-
GroupField clibase.String `json:"group" typescript:",notnull"`
223+
GroupField clibase.String `json:"groups_field" typescript:",notnull"`
224224
SignInText clibase.String `json:"sign_in_text" typescript:",notnull"`
225225
IconURL clibase.URL `json:"icon_url" typescript:",notnull"`
226226
}

docs/api/general.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,7 @@ curl -X GET http://coder-server:8080/api/v2/deployment/config \
230230
"client_id": "string",
231231
"client_secret": "string",
232232
"email_domain": ["string"],
233+
"groups_field": "string",
233234
"icon_url": {
234235
"forceQuery": true,
235236
"fragment": "string",

docs/api/schemas.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1762,6 +1762,7 @@ CreateParameterRequest is a structure used to create a new parameter value for a
17621762
"client_id": "string",
17631763
"client_secret": "string",
17641764
"email_domain": ["string"],
1765+
"groups_field": "string",
17651766
"icon_url": {
17661767
"forceQuery": true,
17671768
"fragment": "string",
@@ -2101,6 +2102,7 @@ CreateParameterRequest is a structure used to create a new parameter value for a
21012102
"client_id": "string",
21022103
"client_secret": "string",
21032104
"email_domain": ["string"],
2105+
"groups_field": "string",
21042106
"icon_url": {
21052107
"forceQuery": true,
21062108
"fragment": "string",
@@ -2761,6 +2763,7 @@ CreateParameterRequest is a structure used to create a new parameter value for a
27612763
"client_id": "string",
27622764
"client_secret": "string",
27632765
"email_domain": ["string"],
2766+
"groups_field": "string",
27642767
"icon_url": {
27652768
"forceQuery": true,
27662769
"fragment": "string",
@@ -2790,6 +2793,7 @@ CreateParameterRequest is a structure used to create a new parameter value for a
27902793
| `client_id` | string | false | | |
27912794
| `client_secret` | string | false | | |
27922795
| `email_domain` | array of string | false | | |
2796+
| `groups_field` | string | false | | |
27932797
| `icon_url` | [clibase.URL](#clibaseurl) | false | | |
27942798
| `ignore_email_verified` | boolean | false | | |
27952799
| `issuer_url` | string | false | | |

site/src/api/typesGenerated.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -502,6 +502,7 @@ export interface OIDCConfig {
502502
readonly scopes: string[]
503503
readonly ignore_email_verified: boolean
504504
readonly username_field: string
505+
readonly groups_field: string
505506
readonly sign_in_text: string
506507
readonly icon_url: string
507508
}

0 commit comments

Comments
 (0)