Skip to content

Commit

Permalink
chore: extend uiConfig schema with new SSO variables (#7628)
Browse files Browse the repository at this point in the history
As the title says. Adds two new nullable variables to uiConfig. Used in
frontend to decide if SSO config is editable through the GUI
  • Loading branch information
chriswk authored Jul 19, 2024
1 parent 71b3a2a commit 71b2035
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/lib/openapi/spec/ui-config-schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,18 @@ export const uiConfigSchema = {
versionInfo: {
$ref: '#/components/schemas/versionSchema',
},
oidcConfiguredThroughEnv: {
type: 'boolean',
description:
'Whether the OIDC configuration is set through environment variables or not.',
example: false,
},
samlConfiguredThroughEnv: {
type: 'boolean',
description:
'Whether the SAML configuration is set through environment variables or not.',
example: false,
},
},
components: {
schemas: {
Expand Down

0 comments on commit 71b2035

Please sign in to comment.