Sha256: ced547190c94c060932a2eb0313e0c0766da391b4b091cc1456ca711020b7bb0
Contents?: true
Size: 214 Bytes
Versions: 16
Compression:
Stored size: 214 Bytes
Contents
# frozen_string_literal: true class DownloadUploader < CarrierWave::Uploader::Base def store_dir "attachments/#{model.id}" end def fog_attributes { 'Content-Disposition' => 'attachment' } end end
Version data entries
16 entries across 16 versions & 1 rubygems