mirror of
https://github.com/discourse/discourse.git
synced 2024-11-27 04:16:19 +08:00
427d54b2b0
Zeitwerk simplifies working with dependencies in dev and makes it easier reloading class chains. We no longer need to use Rails "require_dependency" anywhere and instead can just use standard Ruby patterns to require files. This is a far reaching change and we expect some followups here.
18 lines
438 B
Ruby
18 lines
438 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
|