debian-mirror-gitlab/lib/gitlab/uploads_transfer.rb

10 lines
146 B
Ruby
Raw Normal View History

2018-12-13 13:39:08 +05:30
# frozen_string_literal: true
2015-10-24 18:46:33 +05:30
module Gitlab
2017-08-17 22:00:37 +05:30
class UploadsTransfer < ProjectTransfer
2015-10-24 18:46:33 +05:30
def root_dir
2018-03-17 18:26:18 +05:30
FileUploader.root
2015-10-24 18:46:33 +05:30
end
end
end