mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 17:53:23 +08:00
12 lines
242 B
Ruby
12 lines
242 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module Jobs
|
||
|
class RebakePostsForUpload < ::Jobs::Base
|
||
|
def execute(args)
|
||
|
upload = Upload.find_by(id: args[:id])
|
||
|
return if upload.blank?
|
||
|
upload.posts.find_each(&:rebake!)
|
||
|
end
|
||
|
end
|
||
|
end
|