fix(core): Add missing schema keys for LDAP (no-changelog) (#5348)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™ 2023-02-03 12:50:08 +01:00 committed by GitHub
parent 56326cb317
commit 4dab2fec49
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 2 deletions

View file

@ -983,6 +983,17 @@ export const schema = {
},
},
ldap: {
loginEnabled: {
format: Boolean,
default: false,
},
loginLabel: {
format: String,
default: '',
},
},
hiringBanner: {
enabled: {
doc: 'Whether hiring banner in browser console is enabled.',

View file

@ -81,8 +81,6 @@ type ExceptionPaths = {
'nodes.include': string[] | undefined;
'userManagement.isInstanceOwnerSetUp': boolean;
'userManagement.skipInstanceOwnerSetup': boolean;
'ldap.loginLabel': string;
'ldap.loginEnabled': boolean;
};
// -----------------------------------