Rename `FileHelper.images` to `FileHelper.supported_images`.
This commit is contained in:
parent
02f582eca0
commit
d59e635a77
|
@ -100,14 +100,12 @@ class FileHelper
|
|||
).optimize_image!(filename)
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def self.images
|
||||
@@images ||= Set.new %w{jpg jpeg png gif tif tiff bmp svg webp ico}
|
||||
def self.supported_images
|
||||
@@supported_images ||= Set.new %w{jpg jpeg png gif tif tiff bmp svg webp ico}
|
||||
end
|
||||
|
||||
def self.images_regexp
|
||||
@@images_regexp ||= /\.(#{images.to_a.join("|")})$/i
|
||||
@@images_regexp ||= /\.(#{supported_images.to_a.join("|")})$/i
|
||||
end
|
||||
|
||||
end
|
||||
|
|
|
@ -74,11 +74,11 @@ class Validators::UploadValidator < ActiveModel::Validator
|
|||
end
|
||||
|
||||
def authorized_images(upload)
|
||||
authorized_extensions(upload) & FileHelper.images
|
||||
authorized_extensions(upload) & FileHelper.supported_images
|
||||
end
|
||||
|
||||
def authorized_attachments(upload)
|
||||
authorized_extensions(upload) - FileHelper.images
|
||||
authorized_extensions(upload) - FileHelper.supported_images
|
||||
end
|
||||
|
||||
def authorizes_all_extensions?(upload)
|
||||
|
|
Loading…
Reference in New Issue