Raise maximum attachment size to 66 MiB and maximum standard GIF size to 333 KiB.

staging
multiple creatures 2019-04-18 12:39:38 -05:00
parent 1ca30982fa
commit acdfce2bba
1 changed files with 2 additions and 2 deletions

View File

@ -125,8 +125,8 @@ class MediaAttachment < ApplicationRecord
},
}.freeze
SIZE_LIMIT = 40.megabytes
GIF_LIMIT = ENV.fetch('MAX_GIF_SIZE', 200).to_i.kilobytes
SIZE_LIMIT = 66.megabytes
GIF_LIMIT = ENV.fetch('MAX_GIF_SIZE', 333).to_i.kilobytes
belongs_to :account, inverse_of: :media_attachments, optional: true
belongs_to :status, inverse_of: :media_attachments, optional: true