# frozen_string_literal: true # Indexa todos los artículos de un sitio # # TODO: Hacer opcional class Site module Index extend ActiveSupport::Concern included do has_many :indexed_posts, dependent: :destroy def index_posts! Site.transaction do docs.each(&:index!) end end end end end