Updated GroupCoverImage to have max 5MB

• Updated:
- GroupCoverImage to have max 5MB
This commit is contained in:
mgabdev 2020-09-02 17:55:44 -05:00
parent 1526fee5a1
commit baee8d1141

@ -3,7 +3,7 @@
module GroupCoverImage
extend ActiveSupport::Concern
LIMIT = 4.megabytes
LIMIT = 5.megabytes
IMAGE_MIME_TYPES = ['image/jpeg', 'image/png', 'image/gif', 'image/webp'].freeze
class_methods do