discourse/app/jobs/regular/update_post_uploads_secure_...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
299 B
Ruby
Raw Normal View History

# 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 { |upload| upload.update_secure_status(source: args[:source]) }
end
end
end