5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-26 19:56:21 +00:00

Merge branch 'jekyll-service' into panel.sutty.nl

This commit is contained in:
f 2022-03-23 11:38:00 -03:00
commit 177828e0f8

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