mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 12:13:58 -06:00
f00275ded3
* Support private uploads in S3 * Use localStore for local avatars * Add job to update private upload ACL on S3 * Test multisite paths * update ACL for private uploads in migrate_to_s3 task
18 lines
436 B
Ruby
18 lines
436 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Jobs
|
|
class UpdatePrivateUploadsAcl < Jobs::Base
|
|
# only runs when SiteSetting.prevent_anons_from_downloading_files is updated
|
|
def execute(args)
|
|
return if !SiteSetting.enable_s3_uploads
|
|
|
|
Upload.find_each do |upload|
|
|
if !FileHelper.is_supported_image?(upload.original_filename)
|
|
Discourse.store.update_upload_ACL(upload)
|
|
end
|
|
end
|
|
end
|
|
|
|
end
|
|
end
|