24 lines
383 B
Ruby
24 lines
383 B
Ruby
# frozen_string_literal: true
|
|
|
|
class LfsObjectUploader < GitlabUploader
|
|
extend Workhorse::UploadPath
|
|
include ObjectStorage::Concern
|
|
|
|
storage_options Gitlab.config.lfs
|
|
|
|
alias_method :upload, :model
|
|
|
|
def filename
|
|
model.oid[4..-1]
|
|
end
|
|
|
|
def store_dir
|
|
dynamic_segment
|
|
end
|
|
|
|
private
|
|
|
|
def dynamic_segment
|
|
File.join(model.oid[0, 2], model.oid[2, 2])
|
|
end
|
|
end
|