-module OpenStreetMap
- module ActiveStorage
- module Variant
- private
-
- def upload(image)
- File.open(image.path, "r") { |file| service.upload(key, file, :content_type => content_type) }
- end
- end
-
- 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
-