5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-07-05 21:05:45 +00:00
panel/app/models/deploy_reindex.rb

20 lines
293 B
Ruby
Raw Normal View History

# frozen_string_literal: true
# Reindexa los artículos al terminar la compilación
class DeployReindex < Deploy
2022-07-26 16:57:57 +00:00
def deploy(output: true)
site.reset
site.indexed_posts.destroy_all
site.index_posts!
site.touch
end
def limit
1
end
def hostname
nil
end
end