5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-06-02 07:54:15 +00:00

no ejecutar validaciones al guardar un archivo

This commit is contained in:
f 2021-02-24 13:04:46 -03:00
parent 1ae226bb3a
commit 3a38cae0bc

View file

@ -47,13 +47,13 @@ class MetadataFile < MetadataTemplate
# repetida.
def save
value['description'] = sanitize value['description']
value['path'] = nil unless path?
return true if path_optional?
return false unless hardlink
# Modificar el valor actual
value['path'] = relative_destination_path
if path?
hardlink
value['path'] = relative_destination_path
else
value['path'] = nil
end
true
end
@ -107,6 +107,8 @@ class MetadataFile < MetadataTemplate
end
def file
return unless path?
@file ||=
case value['path']
when ActionDispatch::Http::UploadedFile then value['path'].tempfile.path