mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 13:56:50 +08:00
d1b2e9db3b
When secure uploads are enabled, editing a post with many uploads can cause a timeout because the store has to be contacted for each upload.
15 lines
316 B
Ruby
15 lines
316 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Jobs
|
|
class UpdatePostUploadsSecureStatus < ::Jobs::Base
|
|
def execute(args)
|
|
post = Post.find_by(id: args[:post_id])
|
|
return if post.blank?
|
|
|
|
post.uploads.each do |upload|
|
|
upload.update_secure_status(source: args[:source])
|
|
end
|
|
end
|
|
end
|
|
end
|