mirror of
https://github.com/Unleash/unleash.git
synced 2025-09-24 17:51:14 +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:
parent
71b3a2ae0a
commit
71b2035dfb
@ -168,6 +168,18 @@ export const uiConfigSchema = {
|
|||||||
versionInfo: {
|
versionInfo: {
|
||||||
$ref: '#/components/schemas/versionSchema',
|
$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: {
|
components: {
|
||||||
schemas: {
|
schemas: {
|
||||||
|
Loading…
Reference in New Issue
Block a user