mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-12-27 02:04:33 +08:00
Fix TinyMCE import from ELN
This commit is contained in:
parent
39a2669eef
commit
f9497e2e3e
1 changed files with 2 additions and 1 deletions
|
@ -157,10 +157,11 @@ module ProtocolsImporter
|
||||||
|
|
||||||
# Decode the file bytes
|
# Decode the file bytes
|
||||||
file = StringIO.new(Base64.decode64(tiny_mce_img_json['bytes']))
|
file = StringIO.new(Base64.decode64(tiny_mce_img_json['bytes']))
|
||||||
tiny_mce_img.image.attach(io: file,
|
to_blob = ActiveStorage::Blob.create_after_upload!(io: file,
|
||||||
filename: tiny_mce_img_json['fileName'],
|
filename: tiny_mce_img_json['fileName'],
|
||||||
content_type: tiny_mce_img_json['fileType'],
|
content_type: tiny_mce_img_json['fileType'],
|
||||||
metadata: JSON.parse(tiny_mce_img_json['fileMetadata'] || '{}'))
|
metadata: JSON.parse(tiny_mce_img_json['fileMetadata'] || '{}'))
|
||||||
|
tiny_mce_img.image.attach(to_blob)
|
||||||
if description.gsub!("data-mce-token=\"#{tiny_mce_img_json['tokenId']}\"",
|
if description.gsub!("data-mce-token=\"#{tiny_mce_img_json['tokenId']}\"",
|
||||||
"data-mce-token=\"#{Base62.encode(tiny_mce_img.id)}\"")
|
"data-mce-token=\"#{Base62.encode(tiny_mce_img.id)}\"")
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue