gitlab-org--gitlab-foss/lib/gitlab/uploads_transfer.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
146 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module Gitlab
class UploadsTransfer < ProjectTransfer
def root_dir
2018-01-29 17:57:34 +00:00
FileUploader.root
end
end
end