mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-15 13:45:25 +08:00
11 lines
205 B
Ruby
11 lines
205 B
Ruby
# frozen_string_literal: true
|
|
|
|
module ActiveStorageHelper
|
|
def image_preview_format(blob)
|
|
if ['image/jpeg', 'image/jpg'].include?(blob&.content_type)
|
|
:jpeg
|
|
else
|
|
:png
|
|
end
|
|
end
|
|
end
|