summaryrefslogtreecommitdiff
path: root/app/uploaders/lfs_object_uploader.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/uploaders/lfs_object_uploader.rb')
-rw-r--r--app/uploaders/lfs_object_uploader.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/uploaders/lfs_object_uploader.rb b/app/uploaders/lfs_object_uploader.rb
index faab539b8e0..d11ebf0f9ca 100644
--- a/app/uploaders/lfs_object_uploader.rb
+++ b/app/uploaders/lfs_object_uploader.rb
@@ -9,11 +9,11 @@ class LfsObjectUploader < GitlabUploader
"#{Gitlab.config.lfs.storage_path}/tmp/cache"
end
- def exists?
- file.try(:exists?)
- end
-
def filename
model.oid[4..-1]
end
+
+ def work_dir
+ File.join(Gitlab.config.lfs.storage_path, 'tmp', 'work')
+ end
end