mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-15 04:41:43 +00:00
no ejecutar validaciones al guardar un archivo
This commit is contained in:
parent
1ae226bb3a
commit
3a38cae0bc
1 changed files with 8 additions and 6 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue