Skip to content

Commit e97df91

Browse files
committed
chore: add auto generated files
1 parent a81202c commit e97df91

File tree

11 files changed

+173
-1
lines changed

11 files changed

+173
-1
lines changed

cli/testdata/coder_server_--help.golden

+6
Original file line numberDiff line numberDiff line change
@@ -592,6 +592,12 @@ OIDC OPTIONS:
592592
--oidc-username-field string, $CODER_OIDC_USERNAME_FIELD (default: preferred_username)
593593
OIDC claim field to use as the username.
594594

595+
--logout-endpoint string, $CODER_OIDC_LOGOUT_ENDPOINT
596+
OIDC endpoint for logout.
597+
598+
--logout-redirect-uri string, $CODER_OIDC_LOGOUT_URI
599+
OIDC redirect URI after logout.
600+
595601
--oidc-sign-in-text string, $CODER_OIDC_SIGN_IN_TEXT (default: OpenID Connect)
596602
The text to show on the OpenID Connect sign in button.
597603

cli/testdata/server-config.yaml.golden

+6
Original file line numberDiff line numberDiff line change
@@ -401,6 +401,12 @@ oidc:
401401
# an insecure OIDC configuration. It is not recommended to use this flag.
402402
# (default: <unset>, type: bool)
403403
dangerousSkipIssuerChecks: false
404+
# OIDC endpoint for logout.
405+
# (default: <unset>, type: string)
406+
logoutEndpoint: ""
407+
# OIDC redirect URI after logout.
408+
# (default: <unset>, type: string)
409+
logoutRedirectURI: ""
404410
# Telemetry is critical to our ability to improve Coder. We strip all personal
405411
# information before sending data to our servers. Please only disable telemetry
406412
# when required by your organization's security policy.

coderd/apidoc/docs.go

+39
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

coderd/apidoc/swagger.json

+35
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/reference/api/general.md

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/reference/api/schemas.md

+22
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/reference/api/users.md

+31
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/reference/cli/server.md

+20
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

enterprise/cli/testdata/coder_server_--help.golden

+6
Original file line numberDiff line numberDiff line change
@@ -593,6 +593,12 @@ OIDC OPTIONS:
593593
--oidc-username-field string, $CODER_OIDC_USERNAME_FIELD (default: preferred_username)
594594
OIDC claim field to use as the username.
595595

596+
--logout-endpoint string, $CODER_OIDC_LOGOUT_ENDPOINT
597+
OIDC endpoint for logout.
598+
599+
--logout-redirect-uri string, $CODER_OIDC_LOGOUT_URI
600+
OIDC redirect URI after logout.
601+
596602
--oidc-sign-in-text string, $CODER_OIDC_SIGN_IN_TEXT (default: OpenID Connect)
597603
The text to show on the OpenID Connect sign in button.
598604

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.11.0
1+
1.11.1

site/src/api/typesGenerated.ts

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)