mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-20 03:12:15 +00:00
fix(core): Add missing schema keys for LDAP (no-changelog) (#5348)
This commit is contained in:
committed by
GitHub
parent
56326cb317
commit
4dab2fec49
@@ -983,6 +983,17 @@ export const schema = {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
ldap: {
|
||||||
|
loginEnabled: {
|
||||||
|
format: Boolean,
|
||||||
|
default: false,
|
||||||
|
},
|
||||||
|
loginLabel: {
|
||||||
|
format: String,
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
hiringBanner: {
|
hiringBanner: {
|
||||||
enabled: {
|
enabled: {
|
||||||
doc: 'Whether hiring banner in browser console is 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;
|
'nodes.include': string[] | undefined;
|
||||||
'userManagement.isInstanceOwnerSetUp': boolean;
|
'userManagement.isInstanceOwnerSetUp': boolean;
|
||||||
'userManagement.skipInstanceOwnerSetup': boolean;
|
'userManagement.skipInstanceOwnerSetup': boolean;
|
||||||
'ldap.loginLabel': string;
|
|
||||||
'ldap.loginEnabled': boolean;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
// -----------------------------------
|
// -----------------------------------
|
||||||
|
|||||||
Reference in New Issue
Block a user