mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
fix(core): Add missing schema keys for LDAP (no-changelog) (#5348)
This commit is contained in:
parent
56326cb317
commit
4dab2fec49
|
@ -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.',
|
||||
|
|
2
packages/cli/src/config/types.d.ts
vendored
2
packages/cli/src/config/types.d.ts
vendored
|
@ -81,8 +81,6 @@ type ExceptionPaths = {
|
|||
'nodes.include': string[] | undefined;
|
||||
'userManagement.isInstanceOwnerSetUp': boolean;
|
||||
'userManagement.skipInstanceOwnerSetup': boolean;
|
||||
'ldap.loginLabel': string;
|
||||
'ldap.loginEnabled': boolean;
|
||||
};
|
||||
|
||||
// -----------------------------------
|
||||
|
|
Loading…
Reference in a new issue