mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-16 14:17:00 +08:00
12 lines
205 B
Ruby
12 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
|