Fix user archive takeout when using OpenStack Swift or S3 providers with no ACL support (#24200)

This commit is contained in:
Claire
2023-03-27 17:07:37 +02:00
committed by GitHub
parent ddb769f0b8
commit e084b5b82d
3 changed files with 7 additions and 2 deletions

View File

@ -18,6 +18,6 @@
class Backup < ApplicationRecord
belongs_to :user, inverse_of: :backups
has_attached_file :dump, s3_permissions: 'private'
has_attached_file :dump, s3_permissions: ->(*) { ENV['S3_PERMISSION'] == '' ? nil : 'private' }
validates_attachment_content_type :dump, content_type: /\Aapplication/
end