mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-15 03:51:41 +00:00
recuperar la ubicación de la imagen
This commit is contained in:
parent
a20ff3a23a
commit
bb677f9d09
1 changed files with 4 additions and 0 deletions
|
@ -53,6 +53,9 @@ class Site
|
|||
end
|
||||
|
||||
# Agregamos el archivo al sitio y se lo asignamos al campo
|
||||
# XXX: No usamos ActionDispatch::Http::UploadedFile porque
|
||||
# no tenemos forma de crear un Tempfile o equivalente a
|
||||
# partir de un archivo que exista.
|
||||
metadata.value['path'] = {
|
||||
io: path.open,
|
||||
filename: path.basename
|
||||
|
@ -63,6 +66,7 @@ class Site
|
|||
metadata.static_file.blob.analyze
|
||||
|
||||
dest = Pathname.new(metadata.send(:relative_destination_path))
|
||||
metadata.value['path'] = dest.to_s
|
||||
|
||||
# Eliminamos el archivo original y lo vinculamos al subido
|
||||
# para mantener la ruta y no romper el sitio
|
||||
|
|
Loading…
Reference in a new issue