mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 04:11:33 +08:00
15 lines
394 B
Ruby
15 lines
394 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Backfill < Thor
|
|
desc "link_titles", "Backfills link titles"
|
|
|
|
def link_titles
|
|
require "./config/environment"
|
|
topic_links = TopicLink.where(crawled_at: nil, internal: false)
|
|
|
|
puts "Enqueueing Topic Links: #{topic_links.count} links found."
|
|
|
|
topic_links.pluck(:id).each { |tl| Jobs.enqueue(:crawl_topic_link, topic_link_id: tl) }
|
|
end
|
|
end
|