2014-09-02 18:07:02 +05:30
|
|
|
# encoding: utf-8
|
|
|
|
|
|
|
|
class AttachmentUploader < CarrierWave::Uploader::Base
|
2015-11-26 14:37:03 +05:30
|
|
|
include UploaderHelper
|
|
|
|
|
2014-09-02 18:07:02 +05:30
|
|
|
storage :file
|
|
|
|
|
|
|
|
def store_dir
|
|
|
|
"uploads/#{model.class.to_s.underscore}/#{mounted_as}/#{model.id}"
|
|
|
|
end
|
|
|
|
end
|