feat: ability to define zip compression level

This commit is contained in:
Elias Schneider
2023-07-22 15:44:45 +02:00
parent 389dc87cac
commit 7827b687fa
4 changed files with 9 additions and 5 deletions

View File

@@ -18,7 +18,6 @@ const configVariables: ConfigVariables = {
appUrl: {
type: "string",
defaultValue: "http://localhost:3000",
secret: false,
},
showHomePage: {
@@ -36,15 +35,17 @@ const configVariables: ConfigVariables = {
allowUnauthenticatedShares: {
type: "boolean",
defaultValue: "false",
secret: false,
},
maxSize: {
type: "number",
defaultValue: "1000000000",
secret: false,
},
zipCompressionLevel: {
type: "number",
defaultValue: "9",
},
},
email: {
enableShareEmailRecipients: {