mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 16:46:12 +08:00
13 lines
299 B
Ruby
13 lines
299 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 { |upload| upload.update_secure_status(source: args[:source]) }
|
|
end
|
|
end
|
|
end
|