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)
|
).optimize_image!(filename)
|
||||||
end
|
end
|
||||||
|
|
||||||
private
|
def self.supported_images
|
||||||
|
@@supported_images ||= Set.new %w{jpg jpeg png gif tif tiff bmp svg webp ico}
|
||||||
def self.images
|
|
||||||
@@images ||= Set.new %w{jpg jpeg png gif tif tiff bmp svg webp ico}
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def self.images_regexp
|
def self.images_regexp
|
||||||
@@images_regexp ||= /\.(#{images.to_a.join("|")})$/i
|
@@images_regexp ||= /\.(#{supported_images.to_a.join("|")})$/i
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
|
@ -74,11 +74,11 @@ class Validators::UploadValidator < ActiveModel::Validator
|
||||||
end
|
end
|
||||||
|
|
||||||
def authorized_images(upload)
|
def authorized_images(upload)
|
||||||
authorized_extensions(upload) & FileHelper.images
|
authorized_extensions(upload) & FileHelper.supported_images
|
||||||
end
|
end
|
||||||
|
|
||||||
def authorized_attachments(upload)
|
def authorized_attachments(upload)
|
||||||
authorized_extensions(upload) - FileHelper.images
|
authorized_extensions(upload) - FileHelper.supported_images
|
||||||
end
|
end
|
||||||
|
|
||||||
def authorizes_all_extensions?(upload)
|
def authorizes_all_extensions?(upload)
|
||||||
|
|
Loading…
Reference in New Issue