5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-06-02 08:34:17 +00:00

al migrar un archivo reutilizar la key

This commit is contained in:
f 2022-03-23 11:37:00 -03:00
parent c5896a63cf
commit ecb823f407

View file

@ -78,7 +78,9 @@ class MetadataFile < MetadataTemplate
if (blob_id = ActiveStorage::Blob.where(key: key_from_path).pluck(:id).first)
site.static_files.find_by(blob_id: blob_id)
elsif path? && pathname.exist? && site.static_files.attach(io: pathname.open, filename: pathname.basename)
site.static_files.last
site.static_files.last.tap do |s|
s.blob.update(key: key_from_path)
end
end
end
end