mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-05 11:23:47 +08:00
12 lines
299 B
Ruby
12 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
|