discourse/app/jobs/regular/fix_avatar_in_quotes.rb
2015-03-30 12:48:20 +02:00

10 lines
344 B
Ruby

module Jobs
class FixAvatarInQuotes < Jobs::Base
def execute(args)
post_ids_to_rebake = Post.exec_sql("SELECT post_id FROM quoted_posts WHERE quoted_post_id IN (SELECT id FROM posts WHERE user_id = ?)", args[:user_id]).values.flatten.map(&:to_i)
Post.where(id: post_ids_to_rebake).find_each.map(&:rebake!)
end
end
end