Merge pull request #7 from MythEclipse/feature/auto-delete-flagged-messages
feat(config): change default value of boolean to false in config schema
This commit is contained in:
+1
-1
@@ -124,7 +124,7 @@ const configSchema = z
|
||||
.string()
|
||||
.optional()
|
||||
.transform((v) => v === "true")
|
||||
.default(true),
|
||||
.default(false),
|
||||
DATABASE_TYPE: z.enum(["sqlite", "postgres"]).default("sqlite"),
|
||||
DATABASE_URL: z.string().optional(),
|
||||
POSTGRES_HOST: z.string().default("localhost"),
|
||||
|
||||
Reference in New Issue
Block a user