1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-05-31 01:16:01 +02:00

chore: extend uiConfig schema with new SSO variables (#7628)

As the title says. Adds two new nullable variables to uiConfig. Used in
frontend to decide if SSO config is editable through the GUI
This commit is contained in:
Christopher Kolstad 2024-07-19 14:39:34 +02:00 committed by GitHub
parent 71b3a2ae0a
commit 71b2035dfb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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: {