mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-09-16 01:54:34 +08:00
11 lines
207 B
Ruby
11 lines
207 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
|