Sha256: 961b52a301dc74b2044c5ddac5ec4041af5da70e0580bf8a9468f4d2f0bdb055
Contents?: true
Size: 349 Bytes
Versions: 44
Compression:
Stored size: 349 Bytes
Contents
# frozen_string_literal: true module Decidim # This class deals with uploading record specific images that have more # limited content types than the defaults. class RecordImageUploader < ImageUploader def content_type_allowlist %w(image/jpeg image/png) end def extension_allowlist %w(jpeg jpg png) end end end
Version data entries
44 entries across 44 versions & 1 rubygems