5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-16 10:51:42 +00:00

fix: indexar posts luego de crear el sitio #13610
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

se producía una condición donde el sitio se quería indexar sin haber
terminado de instalar las gemas y todo fallaba.

no tenemos que usar más callbacks, solo servicios
This commit is contained in:
f 2023-06-15 12:04:44 -03:00
parent 4064d41855
commit 8d7d1c10b1
2 changed files with 1 additions and 2 deletions

View file

@ -8,8 +8,6 @@ class Site
extend ActiveSupport::Concern
included do
# TODO: Debería ser un Job?
after_create :index_posts!
has_many :indexed_posts, dependent: :destroy
def index_posts!

View file

@ -33,6 +33,7 @@ SiteService = Struct.new(:site, :usuarie, :params, keyword_init: true) do
add_licencias &&
add_code_of_conduct &&
add_privacy_policy &&
site.index_posts! &&
deploy
end