|
@@ -365,9 +365,11 @@ export const CONFIG_DEFINITIONS = {
|
|
|
}),
|
|
}),
|
|
|
'app:isV5Compatible': defineConfig<boolean>({
|
|
'app:isV5Compatible': defineConfig<boolean>({
|
|
|
defaultValue: false,
|
|
defaultValue: false,
|
|
|
|
|
+ envVarName: 'IS_V5_COMPATIBLE',
|
|
|
}),
|
|
}),
|
|
|
'app:isMaintenanceMode': defineConfig<boolean>({
|
|
'app:isMaintenanceMode': defineConfig<boolean>({
|
|
|
defaultValue: false,
|
|
defaultValue: false,
|
|
|
|
|
+ envVarName: 'IS_MAINTENANCE_MODE',
|
|
|
}),
|
|
}),
|
|
|
'app:confidential': defineConfig<string | undefined>({
|
|
'app:confidential': defineConfig<string | undefined>({
|
|
|
defaultValue: undefined,
|
|
defaultValue: undefined,
|
|
@@ -386,6 +388,7 @@ export const CONFIG_DEFINITIONS = {
|
|
|
}),
|
|
}),
|
|
|
'app:fileUploadDisabled': defineConfig<boolean>({
|
|
'app:fileUploadDisabled': defineConfig<boolean>({
|
|
|
defaultValue: false,
|
|
defaultValue: false,
|
|
|
|
|
+ envVarName: 'FILE_UPLOAD_DISABLED',
|
|
|
}),
|
|
}),
|
|
|
'app:fileUploadType': defineConfig<AttachmentMethodType>({
|
|
'app:fileUploadType': defineConfig<AttachmentMethodType>({
|
|
|
envVarName: 'FILE_UPLOAD',
|
|
envVarName: 'FILE_UPLOAD',
|
|
@@ -598,15 +601,15 @@ export const CONFIG_DEFINITIONS = {
|
|
|
defaultValue: undefined,
|
|
defaultValue: undefined,
|
|
|
}),
|
|
}),
|
|
|
'security:passport-saml:entryPoint': defineConfig<string | undefined>({
|
|
'security:passport-saml:entryPoint': defineConfig<string | undefined>({
|
|
|
- envVarName: 'SECURITY_PASSPORT_SAML_ENTRY_POINT',
|
|
|
|
|
|
|
+ envVarName: 'SAML_ENTRY_POINT',
|
|
|
defaultValue: undefined,
|
|
defaultValue: undefined,
|
|
|
}),
|
|
}),
|
|
|
'security:passport-saml:issuer': defineConfig<string | undefined>({
|
|
'security:passport-saml:issuer': defineConfig<string | undefined>({
|
|
|
- envVarName: 'SECURITY_PASSPORT_SAML_ISSUER',
|
|
|
|
|
|
|
+ envVarName: 'SAML_ISSUER',
|
|
|
defaultValue: undefined,
|
|
defaultValue: undefined,
|
|
|
}),
|
|
}),
|
|
|
'security:passport-saml:cert': defineConfig<string | undefined>({
|
|
'security:passport-saml:cert': defineConfig<string | undefined>({
|
|
|
- envVarName: 'SECURITY_PASSPORT_SAML_CERT',
|
|
|
|
|
|
|
+ envVarName: 'SAML_CERT',
|
|
|
defaultValue: undefined,
|
|
defaultValue: undefined,
|
|
|
}),
|
|
}),
|
|
|
'security:passport-oidc:timeoutMultiplier': defineConfig<number>({
|
|
'security:passport-oidc:timeoutMultiplier': defineConfig<number>({
|
|
@@ -627,6 +630,7 @@ export const CONFIG_DEFINITIONS = {
|
|
|
}),
|
|
}),
|
|
|
'security:disableLinkSharing': defineConfig<boolean>({
|
|
'security:disableLinkSharing': defineConfig<boolean>({
|
|
|
defaultValue: false,
|
|
defaultValue: false,
|
|
|
|
|
+ envVarName: 'DISABLE_LINK_SHARING',
|
|
|
}),
|
|
}),
|
|
|
'security:restrictGuestMode': defineConfig<string>({
|
|
'security:restrictGuestMode': defineConfig<string>({
|
|
|
defaultValue: 'Deny',
|
|
defaultValue: 'Deny',
|