mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-16 14:31:42 +00:00
convertir valores en arrays por retrocompatibilidad
esto permite indexar sitios antiguos y cargar artículos sin generar errores.
This commit is contained in:
parent
7191baff4a
commit
810c5e32da
1 changed files with 8 additions and 0 deletions
|
@ -23,6 +23,14 @@ class MetadataArray < MetadataTemplate
|
|||
value.join(', ')
|
||||
end
|
||||
|
||||
# Obtiene el valor desde el documento, convirtiéndolo a Array si no lo
|
||||
# era ya, por retrocompabilidad.
|
||||
#
|
||||
# @return [Array]
|
||||
def document_value
|
||||
[super].flatten(1)
|
||||
end
|
||||
|
||||
alias indexable_values values
|
||||
|
||||
private
|
||||
|
|
Loading…
Reference in a new issue