mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-16 10:31:41 +00:00
permitir indexar
This commit is contained in:
parent
d5f6d3c61b
commit
3e442865ab
2 changed files with 4 additions and 6 deletions
|
@ -14,7 +14,7 @@ class Post
|
|||
#
|
||||
# @return [IndexedPost]
|
||||
def to_index
|
||||
IndexedPost.find_or_create_by(post_id: uuid.value, site_id: site.id).tap do |indexed_post|
|
||||
IndexedPost.find_or_initialize_by(post_id: uuid.value, site_id: site.id).tap do |indexed_post|
|
||||
indexed_post.layout = layout.name
|
||||
indexed_post.path = path.basename
|
||||
indexed_post.locale = locale.value
|
||||
|
@ -27,8 +27,6 @@ class Post
|
|||
end
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
# Indexa o reindexa el Post
|
||||
#
|
||||
# @return [Boolean]
|
||||
|
@ -40,6 +38,8 @@ class Post
|
|||
to_index.destroy.destroyed?
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
# Los metadatos que se almacenan como objetos JSON. Empezamos con
|
||||
# las categorías porque se usan para filtrar en el listado de
|
||||
# artículos.
|
||||
|
|
|
@ -14,9 +14,7 @@ class Site
|
|||
|
||||
def index_posts!
|
||||
Site.transaction do
|
||||
docs.each do |post|
|
||||
post.to_index.save
|
||||
end
|
||||
docs.each(&:index!)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue