5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-07-03 01:46:07 +00:00
panel/app/models/deploy_reindex.rb

20 lines
279 B
Ruby
Raw Normal View History

# frozen_string_literal: true
# Reindexa los artículos al terminar la compilación
class DeployReindex < Deploy
def deploy
site.reset
site.indexed_posts.destroy_all
site.index_posts!
site.touch
end
def limit
1
end
def hostname
nil
end
end