mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-16 12:41:41 +00:00
los datos privados no se indexan
This commit is contained in:
parent
6396841b2c
commit
98df0ceb3a
4 changed files with 6 additions and 4 deletions
|
@ -13,8 +13,10 @@ class MetadataArray < MetadataTemplate
|
||||||
false
|
false
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# Solo los datos públicos se indexan, aunque MetadataArray no se cifra
|
||||||
|
# aun, dejamos esto preparado para la posteridad.
|
||||||
def indexable?
|
def indexable?
|
||||||
true
|
true && !private?
|
||||||
end
|
end
|
||||||
|
|
||||||
def to_s
|
def to_s
|
||||||
|
|
|
@ -20,7 +20,7 @@ class MetadataContent < MetadataTemplate
|
||||||
end
|
end
|
||||||
|
|
||||||
def indexable?
|
def indexable?
|
||||||
true
|
true && !private?
|
||||||
end
|
end
|
||||||
|
|
||||||
def to_s
|
def to_s
|
||||||
|
|
|
@ -12,7 +12,7 @@ class MetadataDocumentDate < MetadataTemplate
|
||||||
end
|
end
|
||||||
|
|
||||||
def indexable?
|
def indexable?
|
||||||
true
|
true && !private?
|
||||||
end
|
end
|
||||||
|
|
||||||
# El valor puede ser un Date, Time o una String en el formato
|
# El valor puede ser un Date, Time o una String en el formato
|
||||||
|
|
|
@ -8,7 +8,7 @@ class MetadataString < MetadataTemplate
|
||||||
end
|
end
|
||||||
|
|
||||||
def indexable?
|
def indexable?
|
||||||
true
|
true && !private?
|
||||||
end
|
end
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
Loading…
Reference in a new issue