From c81384f3bc85373ae1eb483b19f0c3620128b80b Mon Sep 17 00:00:00 2001 From: Eric Bower Date: Sat, 18 Jan 2025 16:49:42 -0500 Subject: [PATCH] chore(prose): cap images to 25mb for free users --- prose/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prose/config.go b/prose/config.go index c1b4874d..3052949d 100644 --- a/prose/config.go +++ b/prose/config.go @@ -15,7 +15,7 @@ func NewConfigSite() *shared.ConfigSite { minioUser := utils.GetEnv("MINIO_ROOT_USER", "") minioPass := utils.GetEnv("MINIO_ROOT_PASSWORD", "") dbURL := utils.GetEnv("DATABASE_URL", "") - maxSize := uint64(50 * utils.MB) + maxSize := uint64(25 * utils.MB) maxImgSize := int64(10 * utils.MB) return &shared.ConfigSite{