Skip to content

Commit

Permalink
chore(prose): cap images to 25mb for free users
Browse files Browse the repository at this point in the history
  • Loading branch information
neurosnap committed Jan 18, 2025
1 parent ab80ef0 commit c81384f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prose/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -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{
Expand Down

0 comments on commit c81384f

Please sign in to comment.