2017-08-17 22:00:37 +05:30
|
|
|
class AttachmentUploader < GitlabUploader
|
|
|
|
include RecordsUploads
|
2015-11-26 14:37:03 +05:30
|
|
|
include UploaderHelper
|
|
|
|
|
2014-09-02 18:07:02 +05:30
|
|
|
storage :file
|
|
|
|
|
|
|
|
def store_dir
|
2017-08-17 22:00:37 +05:30
|
|
|
"#{base_dir}/#{model.class.to_s.underscore}/#{mounted_as}/#{model.id}"
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
end
|