5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-05-19 10:40:48 +00:00
panel/app/models/deploy_reindex.rb
2023-03-23 19:11:33 -03:00

39 lines
615 B
Ruby

# frozen_string_literal: true
# Reindexa los artículos al terminar la compilación
class DeployReindex < Deploy
def deploy(**)
time_start
site.reset
Site.transaction do
site.indexed_posts.destroy_all
site.index_posts!
end
time_stop
build_stats.create action: 'reindex',
log: 'Reindex',
seconds: time_spent_in_seconds,
bytes: size,
status: true
site.touch
end
def size
0
end
def limit
1
end
def hostname; end
def url; end
def destination; end
end