mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-15 05:31:42 +00:00
los articulos no se relacionan consigo mismos :(
This commit is contained in:
parent
5140a34f55
commit
17ba7db651
1 changed files with 4 additions and 2 deletions
|
@ -3,12 +3,14 @@
|
|||
# Devuelve una lista de títulos y UUID de todos los posts del mismo
|
||||
# idioma que el actual, para usar con input-map.js
|
||||
class MetadataRelatedPosts < MetadataArray
|
||||
# Genera un Hash de { title | slug => uuid }
|
||||
# Genera un Hash de { title | slug => uuid } y excluye el Post actual
|
||||
# @return [Hash]
|
||||
def values
|
||||
@values ||= posts.map do |p|
|
||||
next if p.uuid.value == post.uuid.value
|
||||
|
||||
[title(p), p.uuid.value]
|
||||
end.to_h
|
||||
end.compact.to_h
|
||||
end
|
||||
|
||||
# Las relaciones nunca son privadas
|
||||
|
|
Loading…
Reference in a new issue