gitlab-org--gitlab-foss/app/uploaders/lfs_object_uploader.rb

19 lines
340 B
Ruby
Raw Normal View History

class LfsObjectUploader < ObjectStoreUploader
storage_options Gitlab.config.lfs
after :store, :schedule_migration_to_object_storage
2015-10-12 14:42:14 +00:00
def self.local_store_path
Gitlab.config.lfs.storage_path
2015-10-12 14:42:14 +00:00
end
def filename
subject.oid[4..-1]
2015-10-12 14:42:14 +00:00
end
private
def default_path
"#{subject.oid[0, 2]}/#{subject.oid[2, 2]}"
end
2015-10-12 14:42:14 +00:00
end