mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
10 lines
344 B
Ruby
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
|