mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-25 04:34:06 -08:00
refactor: Add missing schema keys (no-changelog) (#5028)
This commit is contained in:
parent
47854ebc36
commit
4651147096
|
@ -659,6 +659,18 @@ export const schema = {
|
||||||
default: '',
|
default: '',
|
||||||
env: 'N8N_USER_MANAGEMENT_JWT_SECRET',
|
env: 'N8N_USER_MANAGEMENT_JWT_SECRET',
|
||||||
},
|
},
|
||||||
|
isInstanceOwnerSetUp: {
|
||||||
|
// n8n loads this setting from DB on startup
|
||||||
|
doc: "Whether the instance owner's account has been set up",
|
||||||
|
format: Boolean,
|
||||||
|
default: false,
|
||||||
|
},
|
||||||
|
skipInstanceOwnerSetup: {
|
||||||
|
// n8n loads this setting from DB on startup
|
||||||
|
doc: 'Whether to hide the prompt the first time n8n starts with UM enabled',
|
||||||
|
format: Boolean,
|
||||||
|
default: false,
|
||||||
|
},
|
||||||
emails: {
|
emails: {
|
||||||
mode: {
|
mode: {
|
||||||
doc: 'How to send emails',
|
doc: 'How to send emails',
|
||||||
|
@ -764,6 +776,12 @@ export const schema = {
|
||||||
env: 'N8N_COMMUNITY_PACKAGES_ENABLED',
|
env: 'N8N_COMMUNITY_PACKAGES_ENABLED',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
packagesMissing: {
|
||||||
|
// Used to have a persistent list of packages
|
||||||
|
doc: 'Contains a comma separated list of packages that failed to load during startup',
|
||||||
|
format: String,
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
logs: {
|
logs: {
|
||||||
|
|
Loading…
Reference in a new issue