discourse/app/jobs/regular/rebake_posts_for_upload.rb
Martin Brennan e7c7a05097
FIX: Mark secure media upload insecure automatically if used for theme component (#8413)
When uploading a file to a theme component, and that file is existing and has already been marked as secure, we now automatically mark the file as secure: false, change the ACL, and log the action as the user (also rebake the posts for the upload)
2019-11-28 07:32:17 +10:00

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