- module S3Service
- def upload(key, io, content_type:, **options)
- @upload_options[:content_type] = content_type
- super(key, io, **options)
- @upload_options.delete(:content_type)
- end
- end
- end
- end
-
- ActiveStorage::Variant.prepend(OpenStreetMap::ActiveStorage::Variant)
- ActiveStorage::Service::S3Service.prepend(OpenStreetMap::ActiveStorage::S3Service)
-
- ActiveSupport::Reloader.to_complete do
- ActiveStorage::Variant.prepend(OpenStreetMap::ActiveStorage::Variant)
- end